aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SkImageTest.cpp
diff options
context:
space:
mode:
authorGravatar fmalita <fmalita@chromium.org>2015-07-27 10:27:28 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-27 10:27:29 -0700
commit9a5d1ab54d52a912bb3ac9f74ee01bba079639e5 (patch)
tree8a3483083be8e674d7e0e14ccc7fd22de47724e3 /tests/SkImageTest.cpp
parent1c63436f39796d3ed5f27f54d07f6cc120006b94 (diff)
Make peekPixels() usable with raster surface snapshots
SkSurface_Raster snapshots do not lock their backing bitmaps when the pixel ref is shared - they only lock on deep-copy. But since for raster surfaces the pixels are always in memory, I think it would be OK to also lock in the former case. This allows for optimized (zero-copy) reads of raster surface snapshot data. R=reed@google.com Review URL: https://codereview.chromium.org/1256993002
Diffstat (limited to 'tests/SkImageTest.cpp')
-rw-r--r--tests/SkImageTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/SkImageTest.cpp b/tests/SkImageTest.cpp
index 2f23b3f661..508982cea6 100644
--- a/tests/SkImageTest.cpp
+++ b/tests/SkImageTest.cpp
@@ -26,7 +26,8 @@ DEF_TEST(SkImageFromBitmap_extractSubset, reporter) {
canvas.drawIRect(r, p);
SkBitmap dstBitmap;
srcBitmap.extractSubset(&dstBitmap, r);
- image.reset(SkNewImageFromRasterBitmap(dstBitmap, true, NULL));
+ image.reset(SkNewImageFromRasterBitmap(dstBitmap, true, NULL,
+ kUnlocked_SharedPixelRefMode));
}
SkBitmap tgt;