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

Unified Diff: skia/ext/bitmap_platform_device_skia.cc

Issue 2011713003: Roll skia to 8cc209111876b7c78b5ec577c9221d8ed5e21024 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 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
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/bitmap_platform_device_skia.cc
diff --git a/skia/ext/bitmap_platform_device_skia.cc b/skia/ext/bitmap_platform_device_skia.cc
deleted file mode 100644
index 04fc950f56028a98850e11f81a0414e1a44b7b40..0000000000000000000000000000000000000000
--- a/skia/ext/bitmap_platform_device_skia.cc
+++ /dev/null
@@ -1,80 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "skia/ext/bitmap_platform_device_skia.h"
-#include "skia/ext/platform_canvas.h"
-
-namespace skia {
-
-BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
- bool is_opaque) {
- SkBitmap bitmap;
- if (bitmap.tryAllocN32Pixels(width, height, is_opaque)) {
- // Follow the logic in SkCanvas::createDevice(), initialize the bitmap if it
- // is not opaque.
- if (!is_opaque)
- bitmap.eraseARGB(0, 0, 0, 0);
- return new BitmapPlatformDevice(bitmap);
- }
- return NULL;
-}
-
-BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
- bool is_opaque,
- uint8_t* data) {
- SkBitmap bitmap;
- bitmap.setInfo(SkImageInfo::MakeN32(width, height,
- is_opaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType));
- if (data)
- bitmap.setPixels(data);
- else if (!bitmap.tryAllocPixels())
- return NULL;
-
- return new BitmapPlatformDevice(bitmap);
-}
-
-BitmapPlatformDevice::BitmapPlatformDevice(const SkBitmap& bitmap)
- : SkBitmapDevice(bitmap) {
- SetPlatformDevice(this, this);
-}
-
-BitmapPlatformDevice::~BitmapPlatformDevice() {
-}
-
-SkBaseDevice* BitmapPlatformDevice::onCreateDevice(const CreateInfo& info,
- const SkPaint*) {
- SkASSERT(info.fInfo.colorType() == kN32_SkColorType);
- return BitmapPlatformDevice::Create(info.fInfo.width(), info.fInfo.height(),
- info.fInfo.isOpaque());
-}
-
-PlatformSurface BitmapPlatformDevice::BeginPlatformPaint() {
- // TODO(zhenghao): What should we return? The ptr to the address of the
- // pixels? Maybe this won't be called at all.
- return accessBitmap(true).getPixels();
-}
-
-// PlatformCanvas impl
-
-SkCanvas* CreatePlatformCanvas(int width, int height, bool is_opaque,
- uint8_t* data, OnFailureType failureType) {
- skia::RefPtr<SkBaseDevice> dev = skia::AdoptRef(
- BitmapPlatformDevice::Create(width, height, is_opaque, data));
- return CreateCanvas(dev, failureType);
-}
-
-// Port of PlatformBitmap to android
-PlatformBitmap::~PlatformBitmap() {
- // Nothing to do.
-}
-
-bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {
- if (!bitmap_.tryAllocN32Pixels(width, height, is_opaque))
- return false;
-
- surface_ = bitmap_.getPixels();
- return true;
-}
-
-} // namespace skia
« 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