Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(668)

Unified Diff: skia/ext/platform_device_mac.h

Issue 7019013: Removal of dependencies on PlatformDevice classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove unnecessary headers. Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: skia/ext/platform_device_mac.h
===================================================================
--- skia/ext/platform_device_mac.h (revision 85672)
+++ skia/ext/platform_device_mac.h (working copy)
@@ -17,6 +17,19 @@
namespace skia {
+namespace platform_util {
+
+// Draws to the given graphics context. Forwards to the PlatformDevice bound
+// to |device|. Otherwise is a NOP.
+void DrawToContext(SkDevice* device, CGContextRef context, int x, int y,
+ const CGRect* src_rect);
+
+// Returns the CGContext that backing the SkDevice. Forwards to the bound
+// PlatformDevice. Returns NULL if no PlatformDevice is bound.
+CGContextRef GetBitmapContext(SkDevice* device);
+
+} // namespace platform_util
+
// A device is basically a wrapper around SkBitmap that provides a surface for
// SkCanvas to draw into. Our device provides a surface CoreGraphics can also
// write to. It also provides functionality to play well with CG drawing

Powered by Google App Engine
This is Rietveld 408576698