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

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

Issue 817653003: Update from https://crrev.com/309717 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « skia/config/SkUserConfig.h ('k') | skia/ext/pixel_ref_utils_unittest.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_EXT_BITMAP_PLATFORM_DEVICE_CAIRO_H_ 5 #ifndef SKIA_EXT_BITMAP_PLATFORM_DEVICE_CAIRO_H_
6 #define SKIA_EXT_BITMAP_PLATFORM_DEVICE_CAIRO_H_ 6 #define SKIA_EXT_BITMAP_PLATFORM_DEVICE_CAIRO_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // ----------------------------------------------------------------------------- 58 // -----------------------------------------------------------------------------
59 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { 59 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice {
60 public: 60 public:
61 // Create a BitmapPlatformDeviceLinux from an already constructed bitmap; 61 // Create a BitmapPlatformDeviceLinux from an already constructed bitmap;
62 // you should probably be using Create(). This may become private later if 62 // you should probably be using Create(). This may become private later if
63 // we ever have to share state between some native drawing UI and Skia, like 63 // we ever have to share state between some native drawing UI and Skia, like
64 // the Windows and Mac versions of this class do. 64 // the Windows and Mac versions of this class do.
65 // 65 //
66 // This object takes ownership of @cairo. 66 // This object takes ownership of @cairo.
67 BitmapPlatformDevice(const SkBitmap& other, cairo_t* cairo); 67 BitmapPlatformDevice(const SkBitmap& other, cairo_t* cairo);
68 virtual ~BitmapPlatformDevice(); 68 ~BitmapPlatformDevice() override;
69 69
70 // Constructs a device with size |width| * |height| with contents initialized 70 // Constructs a device with size |width| * |height| with contents initialized
71 // to zero. |is_opaque| should be set if the caller knows the bitmap will be 71 // to zero. |is_opaque| should be set if the caller knows the bitmap will be
72 // completely opaque and allows some optimizations. 72 // completely opaque and allows some optimizations.
73 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque); 73 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
74 74
75 // Performs the same construction as Create. 75 // Performs the same construction as Create.
76 // Other ports require a separate construction routine because Create does not 76 // Other ports require a separate construction routine because Create does not
77 // initialize the bitmap to 0. 77 // initialize the bitmap to 0.
78 static BitmapPlatformDevice* CreateAndClear(int width, int height, 78 static BitmapPlatformDevice* CreateAndClear(int width, int height,
79 bool is_opaque); 79 bool is_opaque);
80 80
81 // This doesn't take ownership of |data|. If |data| is NULL, the contents 81 // This doesn't take ownership of |data|. If |data| is NULL, the contents
82 // of the device are initialized to 0. 82 // of the device are initialized to 0.
83 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque, 83 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
84 uint8_t* data); 84 uint8_t* data);
85 85
86 // Overridden from SkBaseDevice: 86 // Overridden from SkBaseDevice:
87 virtual void setMatrixClip(const SkMatrix& transform, const SkRegion& region, 87 void setMatrixClip(const SkMatrix& transform,
88 const SkClipStack&) override; 88 const SkRegion& region,
89 const SkClipStack&) override;
89 90
90 // Overridden from PlatformDevice: 91 // Overridden from PlatformDevice:
91 virtual cairo_t* BeginPlatformPaint() override; 92 cairo_t* BeginPlatformPaint() override;
92 93
93 protected: 94 protected:
94 virtual SkBaseDevice* onCreateCompatibleDevice(const CreateInfo& info) 95 SkBaseDevice* onCreateCompatibleDevice(const CreateInfo& info) override;
95 override;
96 96
97 private: 97 private:
98 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque, 98 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
99 cairo_surface_t* surface); 99 cairo_surface_t* surface);
100 100
101 // Sets the transform and clip operations. This will not update the Cairo 101 // Sets the transform and clip operations. This will not update the Cairo
102 // context, but will mark the config as dirty. The next call of LoadConfig 102 // context, but will mark the config as dirty. The next call of LoadConfig
103 // will pick up these changes. 103 // will pick up these changes.
104 void SetMatrixClip(const SkMatrix& transform, const SkRegion& region); 104 void SetMatrixClip(const SkMatrix& transform, const SkRegion& region);
105 105
(...skipping 15 matching lines...) Expand all
121 121
122 // The current clipping 122 // The current clipping
123 SkRegion clip_region_; 123 SkRegion clip_region_;
124 124
125 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice); 125 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
126 }; 126 };
127 127
128 } // namespace skia 128 } // namespace skia
129 129
130 #endif // SKIA_EXT_BITMAP_PLATFORM_DEVICE_CAIRO_H_ 130 #endif // SKIA_EXT_BITMAP_PLATFORM_DEVICE_CAIRO_H_
OLDNEW
« no previous file with comments | « skia/config/SkUserConfig.h ('k') | skia/ext/pixel_ref_utils_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698