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

Side by Side Diff: skia/ext/bitmap_platform_device_linux.cc

Issue 155700: Reverting 20516. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « skia/ext/bitmap_platform_device_linux.h ('k') | skia/ext/bitmap_platform_device_win.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) 2009 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 #include "skia/ext/bitmap_platform_device_linux.h" 5 #include "skia/ext/bitmap_platform_device_linux.h"
6 6
7 #include <cairo/cairo.h> 7 #include <cairo/cairo.h>
8 8
9 namespace skia { 9 namespace skia {
10 10
11 namespace {
12
13 void LoadMatrixToContext(cairo_t* context, const SkMatrix& matrix) {
14 cairo_matrix_t cairo_matrix;
15 cairo_matrix_init(&cairo_matrix,
16 SkScalarToFloat(matrix.getScaleX()),
17 SkScalarToFloat(matrix.getSkewY()),
18 SkScalarToFloat(matrix.getSkewX()),
19 SkScalarToFloat(matrix.getScaleY()),
20 SkScalarToFloat(matrix.getTranslateX()),
21 SkScalarToFloat(matrix.getTranslateY()));
22 cairo_set_matrix(context, &cairo_matrix);
23 }
24
25 void LoadClipToContext(cairo_t* context, const SkRegion& clip) {
26 cairo_reset_clip(context);
27
28 // TODO(brettw) support non-rect clips.
29 SkIRect bounding = clip.getBounds();
30 cairo_rectangle(context, bounding.fLeft, bounding.fTop,
31 bounding.fRight - bounding.fLeft,
32 bounding.fBottom - bounding.fTop);
33 cairo_clip(context);
34 }
35
36 } // namespace
37
11 // ----------------------------------------------------------------------------- 38 // -----------------------------------------------------------------------------
12 // These objects are reference counted and own a Cairo surface. The surface is 39 // These objects are reference counted and own a Cairo surface. The surface is
13 // the backing store for a Skia bitmap and we reference count it so that we can 40 // the backing store for a Skia bitmap and we reference count it so that we can
14 // copy BitmapPlatformDevice objects without having to copy all the image 41 // copy BitmapPlatformDevice objects without having to copy all the image
15 // data. 42 // data.
16 // ----------------------------------------------------------------------------- 43 // -----------------------------------------------------------------------------
17 class BitmapPlatformDevice::BitmapPlatformDeviceData 44 class BitmapPlatformDevice::BitmapPlatformDeviceData
18 : public base::RefCounted<BitmapPlatformDeviceData> { 45 : public base::RefCounted<BitmapPlatformDeviceData> {
19 public: 46 public:
20 explicit BitmapPlatformDeviceData(cairo_surface_t* surface) 47 explicit BitmapPlatformDeviceData(cairo_surface_t* surface);
21 : surface_(surface) { }
22 48
23 cairo_surface_t* surface() const { return surface_; } 49 cairo_t* GetContext();
50 cairo_surface_t* GetSurface();
51
52 // Sets the transform and clip operations. This will not update the Cairo
53 // surface, but will mark the config as dirty. The next call of LoadConfig
54 // will pick up these changes.
55 void SetMatrixClip(const SkMatrix& transform, const SkRegion& region);
24 56
25 protected: 57 protected:
58 friend class base::RefCounted<BitmapPlatformDeviceData>;
59
60 ~BitmapPlatformDeviceData();
61
62 void LoadConfig();
63
64 // The Cairo surface inside this DC.
65 cairo_t* context_;
26 cairo_surface_t *const surface_; 66 cairo_surface_t *const surface_;
27 67
28 friend class base::RefCounted<BitmapPlatformDeviceData>; 68 // True when there is a transform or clip that has not been set to the
29 ~BitmapPlatformDeviceData() { 69 // surface. The surface is retrieved for every text operation, and the
30 cairo_surface_destroy(surface_); 70 // transform and clip do not change as much. We can save time by not loading
31 } 71 // the clip and transform for every one.
72 bool config_dirty_;
73
74 // Translation assigned to the DC: we need to keep track of this separately
75 // so it can be updated even if the DC isn't created yet.
76 SkMatrix transform_;
77
78 // The current clipping
79 SkRegion clip_region_;
32 80
33 // Disallow copy & assign. 81 // Disallow copy & assign.
34 BitmapPlatformDeviceData(const BitmapPlatformDeviceData&); 82 BitmapPlatformDeviceData(const BitmapPlatformDeviceData&);
35 BitmapPlatformDeviceData& operator=( 83 BitmapPlatformDeviceData& operator=(
36 const BitmapPlatformDeviceData&); 84 const BitmapPlatformDeviceData&);
37 }; 85 };
38 86
87 BitmapPlatformDevice::BitmapPlatformDeviceData::BitmapPlatformDeviceData(
88 cairo_surface_t* surface)
89 : surface_(surface),
90 config_dirty_(true) { // Want to load the config next time.
91 context_ = cairo_create(surface);
92 }
93
94 BitmapPlatformDevice::BitmapPlatformDeviceData::~BitmapPlatformDeviceData() {
95 cairo_destroy(context_);
96 cairo_surface_destroy(surface_);
97 }
98
99 cairo_t* BitmapPlatformDevice::BitmapPlatformDeviceData::GetContext() {
100 LoadConfig();
101 return context_;
102 }
103
104 void BitmapPlatformDevice::BitmapPlatformDeviceData::SetMatrixClip(
105 const SkMatrix& transform,
106 const SkRegion& region) {
107 transform_ = transform;
108 clip_region_ = region;
109 config_dirty_ = true;
110 }
111
112 cairo_surface_t*
113 BitmapPlatformDevice::BitmapPlatformDeviceData::GetSurface() {
114 // TODO(brettw) this function should be removed.
115 LoadConfig();
116 return surface_;
117 }
118
119 void BitmapPlatformDevice::BitmapPlatformDeviceData::LoadConfig() {
120 if (!config_dirty_ || !context_)
121 return; // Nothing to do.
122 config_dirty_ = false;
123
124 // Load the identity matrix since this is what our clip is relative to.
125 cairo_matrix_t cairo_matrix;
126 cairo_matrix_init_identity(&cairo_matrix);
127 cairo_set_matrix(context_, &cairo_matrix);
128
129 LoadClipToContext(context_, clip_region_);
130 LoadMatrixToContext(context_, transform_);
131 }
132
39 // We use this static factory function instead of the regular constructor so 133 // We use this static factory function instead of the regular constructor so
40 // that we can create the pixel data before calling the constructor. This is 134 // that we can create the pixel data before calling the constructor. This is
41 // required so that we can call the base class' constructor with the pixel 135 // required so that we can call the base class' constructor with the pixel
42 // data. 136 // data.
43 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, 137 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
44 bool is_opaque, 138 bool is_opaque,
45 cairo_surface_t* surface) { 139 cairo_surface_t* surface) {
46 SkBitmap bitmap; 140 SkBitmap bitmap;
47 bitmap.setConfig(SkBitmap::kARGB_8888_Config, width, height, 141 bitmap.setConfig(SkBitmap::kARGB_8888_Config, width, height,
48 cairo_image_surface_get_stride(surface)); 142 cairo_image_surface_get_stride(surface));
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 BitmapPlatformDevice::BitmapPlatformDevice( 185 BitmapPlatformDevice::BitmapPlatformDevice(
92 const BitmapPlatformDevice& other) 186 const BitmapPlatformDevice& other)
93 : PlatformDevice(const_cast<BitmapPlatformDevice&>( 187 : PlatformDevice(const_cast<BitmapPlatformDevice&>(
94 other).accessBitmap(true)), 188 other).accessBitmap(true)),
95 data_(other.data_) { 189 data_(other.data_) {
96 } 190 }
97 191
98 BitmapPlatformDevice::~BitmapPlatformDevice() { 192 BitmapPlatformDevice::~BitmapPlatformDevice() {
99 } 193 }
100 194
101 cairo_surface_t* BitmapPlatformDevice::surface() const { 195 cairo_t* BitmapPlatformDevice::beginPlatformPaint() {
102 return data_->surface(); 196 return data_->GetContext();
197 }
198
199 void BitmapPlatformDevice::setMatrixClip(const SkMatrix& transform,
200 const SkRegion& region) {
201 data_->SetMatrixClip(transform, region);
103 } 202 }
104 203
105 BitmapPlatformDevice& BitmapPlatformDevice::operator=( 204 BitmapPlatformDevice& BitmapPlatformDevice::operator=(
106 const BitmapPlatformDevice& other) { 205 const BitmapPlatformDevice& other) {
107 data_ = other.data_; 206 data_ = other.data_;
108 return *this; 207 return *this;
109 } 208 }
110 209
111 } // namespace skia 210 } // namespace skia
OLDNEW
« no previous file with comments | « skia/ext/bitmap_platform_device_linux.h ('k') | skia/ext/bitmap_platform_device_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698