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

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

Issue 773373002: Update from https://crrev.com/306706 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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/ext/bitmap_platform_device_skia.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 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 #include "skia/ext/bitmap_platform_device_skia.h" 5 #include "skia/ext/bitmap_platform_device_skia.h"
6 #include "skia/ext/platform_canvas.h" 6 #include "skia/ext/platform_canvas.h"
7 7
8 namespace skia { 8 namespace skia {
9 9
10 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, 10 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
11 bool is_opaque) { 11 bool is_opaque) {
12 SkBitmap bitmap; 12 SkBitmap bitmap;
13 if (bitmap.tryAllocN32Pixels(width, height, is_opaque)) { 13 if (bitmap.tryAllocN32Pixels(width, height, is_opaque)) {
14 // Follow the logic in SkCanvas::createDevice(), initialize the bitmap if it 14 // Follow the logic in SkCanvas::createDevice(), initialize the bitmap if it
15 // is not opaque. 15 // is not opaque.
16 if (!is_opaque) 16 if (!is_opaque)
17 bitmap.eraseARGB(0, 0, 0, 0); 17 bitmap.eraseARGB(0, 0, 0, 0);
18 return new BitmapPlatformDevice(bitmap); 18 return new BitmapPlatformDevice(bitmap);
19 } 19 }
20 return NULL; 20 return NULL;
21 } 21 }
22 22
23 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width,
24 int height,
25 bool is_opaque) {
26 BitmapPlatformDevice* device = Create(width, height, is_opaque);
27 if (!is_opaque)
28 device->clear(0);
29 return device;
30 }
31
32 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, 23 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
33 bool is_opaque, 24 bool is_opaque,
34 uint8_t* data) { 25 uint8_t* data) {
35 SkBitmap bitmap; 26 SkBitmap bitmap;
36 bitmap.setInfo(SkImageInfo::MakeN32(width, height, 27 bitmap.setInfo(SkImageInfo::MakeN32(width, height,
37 is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType)); 28 is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType));
38 if (data) 29 if (data)
39 bitmap.setPixels(data); 30 bitmap.setPixels(data);
40 else if (!bitmap.tryAllocPixels()) 31 else if (!bitmap.tryAllocPixels())
41 return NULL; 32 return NULL;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 77
87 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) { 78 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {
88 if (!bitmap_.tryAllocN32Pixels(width, height, is_opaque)) 79 if (!bitmap_.tryAllocN32Pixels(width, height, is_opaque))
89 return false; 80 return false;
90 81
91 surface_ = bitmap_.getPixels(); 82 surface_ = bitmap_.getPixels();
92 return true; 83 return true;
93 } 84 }
94 85
95 } // namespace skia 86 } // namespace skia
OLDNEW
« no previous file with comments | « skia/ext/bitmap_platform_device_skia.h ('k') | skia/ext/bitmap_platform_device_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698