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

Unified Diff: src/gpu/SkGpuDevice.cpp

Issue 1168303006: Revert[2] SkDraw and all Blitters to use pixmap instead of bitmapi (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix for compatibility test (e.g. WebGL) Created 5 years, 6 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
Index: src/gpu/SkGpuDevice.cpp
diff --git a/src/gpu/SkGpuDevice.cpp b/src/gpu/SkGpuDevice.cpp
index beed2fab286bcd88a16d62168b7d1b5727a30e7e..b7e5ec9bf56152facd8268c1569e054a73c7361c 100644
--- a/src/gpu/SkGpuDevice.cpp
+++ b/src/gpu/SkGpuDevice.cpp
@@ -278,6 +278,14 @@ const SkBitmap& SkGpuDevice::onAccessBitmap() {
return fLegacyBitmap;
}
+bool SkGpuDevice::onAccessPixels(SkPixmap* pmap) {
+ DO_DEFERRED_CLEAR();
+ // For compatibility with clients the know we're backed w/ a bitmap, and want to inspect its
+ // genID. When we can hide/remove that fact, we can eliminate this call to notify.
robertphillips 2015/06/09 18:17:37 erg
reed1 2015/06/09 18:34:10 Done.
+ fLegacyBitmap.notifyPixelsChanged();
+ return false;
+}
+
void SkGpuDevice::onAttachToCanvas(SkCanvas* canvas) {
INHERITED::onAttachToCanvas(canvas);

Powered by Google App Engine
This is Rietveld 408576698