Chromium Code Reviews

Side by Side Diff: skia/ext/bitmap_platform_device_win.h

Issue 149409: Keep the cairo clipping region in sync with the Skia one. (Closed)
Patch Set: git try Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « skia/ext/bitmap_platform_device_linux.cc ('k') | skia/ext/canvas_paint_linux.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SKIA_BITMAP_PLATFORM_DEVICE_WIN_H_ 5 #ifndef SKIA_BITMAP_PLATFORM_DEVICE_WIN_H_
6 #define SKIA_BITMAP_PLATFORM_DEVICE_WIN_H_ 6 #define SKIA_BITMAP_PLATFORM_DEVICE_WIN_H_
7 7
8 #include "skia/ext/platform_device_win.h" 8 #include "skia/ext/platform_device_win.h"
9 9
10 namespace skia { 10 namespace skia {
(...skipping 46 matching lines...)
57 // around to another routine willing to deal with the bitmap data directly. 57 // around to another routine willing to deal with the bitmap data directly.
58 BitmapPlatformDevice(const BitmapPlatformDevice& other); 58 BitmapPlatformDevice(const BitmapPlatformDevice& other);
59 virtual ~BitmapPlatformDevice(); 59 virtual ~BitmapPlatformDevice();
60 60
61 // See warning for copy constructor above. 61 // See warning for copy constructor above.
62 BitmapPlatformDevice& operator=(const BitmapPlatformDevice& other); 62 BitmapPlatformDevice& operator=(const BitmapPlatformDevice& other);
63 63
64 // Retrieves the bitmap DC, which is the memory DC for our bitmap data. The 64 // Retrieves the bitmap DC, which is the memory DC for our bitmap data. The
65 // bitmap DC is lazy created. 65 // bitmap DC is lazy created.
66 virtual HDC getBitmapDC(); 66 virtual HDC getBitmapDC();
67
68 // Loads the given transform and clipping region into the HDC. This is
69 // overridden from SkDevice.
67 virtual void setMatrixClip(const SkMatrix& transform, const SkRegion& region); 70 virtual void setMatrixClip(const SkMatrix& transform, const SkRegion& region);
68 71
69 virtual void drawToHDC(HDC dc, int x, int y, const RECT* src_rect); 72 virtual void drawToHDC(HDC dc, int x, int y, const RECT* src_rect);
70 virtual void makeOpaque(int x, int y, int width, int height); 73 virtual void makeOpaque(int x, int y, int width, int height);
71 virtual bool IsVectorial() { return false; } 74 virtual bool IsVectorial() { return false; }
72 75
73 // Returns the color value at the specified location. This does not 76 // Returns the color value at the specified location. This does not
74 // consider any transforms that may be set on the device. 77 // consider any transforms that may be set on the device.
75 SkColor getColorAt(int x, int y); 78 SkColor getColorAt(int x, int y);
76 79
(...skipping 15 matching lines...)
92 95
93 // Data associated with this device, guaranteed non-null. We hold a reference 96 // Data associated with this device, guaranteed non-null. We hold a reference
94 // to this object. 97 // to this object.
95 BitmapPlatformDeviceData* data_; 98 BitmapPlatformDeviceData* data_;
96 }; 99 };
97 100
98 } // namespace skia 101 } // namespace skia
99 102
100 #endif // SKIA_BITMAP_PLATFORM_DEVICE_WIN_H_ 103 #endif // SKIA_BITMAP_PLATFORM_DEVICE_WIN_H_
101 104
OLDNEW
« no previous file with comments | « skia/ext/bitmap_platform_device_linux.cc ('k') | skia/ext/canvas_paint_linux.h » ('j') | no next file with comments »

Powered by Google App Engine