blob: 1784d5595eec9c1ede41033395cc9a09302aba0b [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
robertphillips@google.com5088eb42012-06-28 20:59:13 +000011#include "SkGrPixelRef.h"
piotaixr0e977052014-09-17 16:24:04 -070012
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +000013#include "GrContext.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000014#include "GrTexture.h"
piotaixr0e977052014-09-17 16:24:04 -070015#include "SkBitmapCache.h"
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +000016#include "SkGr.h"
bsalomon@google.com669fdc42011-04-05 17:08:27 +000017#include "SkRect.h"
reed@google.com9c49bc32011-07-07 13:42:37 +000018
19// since we call lockPixels recursively on fBitmap, we need a distinct mutex,
20// to avoid deadlock with the default one provided by SkPixelRef.
digit@google.com1771cbf2012-01-26 21:26:40 +000021SK_DECLARE_STATIC_MUTEX(gROLockPixelsPixelRefMutex);
reed@google.com9c49bc32011-07-07 13:42:37 +000022
reed@google.combf790232013-12-13 19:45:58 +000023SkROLockPixelsPixelRef::SkROLockPixelsPixelRef(const SkImageInfo& info)
24 : INHERITED(info, &gROLockPixelsPixelRefMutex) {}
reed@google.com9c49bc32011-07-07 13:42:37 +000025
reed@google.combf790232013-12-13 19:45:58 +000026SkROLockPixelsPixelRef::~SkROLockPixelsPixelRef() {}
reed@google.com9c49bc32011-07-07 13:42:37 +000027
reed@google.comd0419b12014-01-06 17:08:27 +000028bool SkROLockPixelsPixelRef::onNewLockPixels(LockRec* rec) {
reed@google.com9c49bc32011-07-07 13:42:37 +000029 fBitmap.reset();
30// SkDebugf("---------- calling readpixels in support of lockpixels\n");
31 if (!this->onReadPixels(&fBitmap, NULL)) {
32 SkDebugf("SkROLockPixelsPixelRef::onLockPixels failed!\n");
reed@google.comd0419b12014-01-06 17:08:27 +000033 return false;
reed@google.com9c49bc32011-07-07 13:42:37 +000034 }
35 fBitmap.lockPixels();
reed@google.comd0419b12014-01-06 17:08:27 +000036 if (NULL == fBitmap.getPixels()) {
37 return false;
38 }
39
40 rec->fPixels = fBitmap.getPixels();
41 rec->fColorTable = NULL;
42 rec->fRowBytes = fBitmap.rowBytes();
43 return true;
reed@google.com9c49bc32011-07-07 13:42:37 +000044}
45
46void SkROLockPixelsPixelRef::onUnlockPixels() {
47 fBitmap.unlockPixels();
48}
49
50bool SkROLockPixelsPixelRef::onLockPixelsAreWritable() const {
51 return false;
52}
53
54///////////////////////////////////////////////////////////////////////////////
bsalomon@google.com669fdc42011-04-05 17:08:27 +000055
junov96c118e2014-09-26 13:09:47 -070056static SkGrPixelRef* copy_to_new_texture_pixelref(GrTexture* texture, SkColorType dstCT,
junov2bb52102014-09-29 10:18:59 -070057 const SkIRect* subset) {
reede4538f52014-06-11 06:09:50 -070058 if (NULL == texture || kUnknown_SkColorType == dstCT) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +000059 return NULL;
60 }
61 GrContext* context = texture->getContext();
62 if (NULL == context) {
63 return NULL;
64 }
bsalomonf2703d82014-10-28 14:33:06 -070065 GrSurfaceDesc desc;
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +000066
bsalomonf80bfed2014-10-07 05:56:02 -070067 SkIRect srcRect;
68
69 if (!subset) {
70 desc.fWidth = texture->width();
71 desc.fHeight = texture->height();
72 srcRect = SkIRect::MakeWH(texture->width(), texture->height());
73 } else {
scroggo@google.coma2a31922012-12-07 19:14:45 +000074 SkASSERT(SkIRect::MakeWH(texture->width(), texture->height()).contains(*subset));
75 // Create a new texture that is the size of subset.
76 desc.fWidth = subset->width();
77 desc.fHeight = subset->height();
bsalomonf80bfed2014-10-07 05:56:02 -070078 srcRect = *subset;
scroggo@google.coma2a31922012-12-07 19:14:45 +000079 }
bsalomonf2703d82014-10-28 14:33:06 -070080 desc.fFlags = kRenderTarget_GrSurfaceFlag | kNoStencil_GrSurfaceFlag;
reede4538f52014-06-11 06:09:50 -070081 desc.fConfig = SkImageInfo2GrPixelConfig(dstCT, kPremul_SkAlphaType);
skia.committer@gmail.com96f5fa02013-12-16 07:01:40 +000082
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +000083 GrTexture* dst = context->createUncachedTexture(desc, NULL, 0);
84 if (NULL == dst) {
85 return NULL;
86 }
87
junov96c118e2014-09-26 13:09:47 -070088 // Blink is relying on the above copy being sent to GL immediately in the case when the source
bsalomonf80bfed2014-10-07 05:56:02 -070089 // is a WebGL canvas backing store. We could have a TODO to remove this flush flag, but we have
90 // a larger TODO to remove SkGrPixelRef entirely.
91 context->copySurface(dst->asRenderTarget(), texture, srcRect, SkIPoint::Make(0,0),
92 GrContext::kFlushWrites_PixelOp);
93
reede4538f52014-06-11 06:09:50 -070094 SkImageInfo info = SkImageInfo::Make(desc.fWidth, desc.fHeight, dstCT, kPremul_SkAlphaType);
reed@google.combf790232013-12-13 19:45:58 +000095 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (info, dst));
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000096 SkSafeUnref(dst);
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +000097 return pixelRef;
98}
99
100///////////////////////////////////////////////////////////////////////////////
101
bsalomonbcf0a522014-10-08 08:40:09 -0700102SkGrPixelRef::SkGrPixelRef(const SkImageInfo& info, GrSurface* surface) : INHERITED(info) {
bsalomon71875932014-08-29 08:08:35 -0700103 // For surfaces that are both textures and render targets, the texture owns the
104 // render target but not vice versa. So we ref the texture to keep both alive for
105 // the lifetime of this pixel ref.
106 fSurface = SkSafeRef(surface->asTexture());
reed@google.com61867872013-12-09 13:41:06 +0000107 if (NULL == fSurface) {
bsalomon71875932014-08-29 08:08:35 -0700108 fSurface = SkSafeRef(surface);
reed@google.com61867872013-12-09 13:41:06 +0000109 }
commit-bot@chromium.org8e0993d2014-01-28 15:16:45 +0000110
111 if (fSurface) {
reede5ea5002014-09-03 11:54:58 -0700112 SkASSERT(info.width() <= fSurface->width());
113 SkASSERT(info.height() <= fSurface->height());
commit-bot@chromium.org8e0993d2014-01-28 15:16:45 +0000114 }
reed@google.com61867872013-12-09 13:41:06 +0000115}
116
robertphillips@google.comd881bc12012-06-28 20:02:39 +0000117SkGrPixelRef::~SkGrPixelRef() {
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000118 SkSafeUnref(fSurface);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000119}
120
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000121GrTexture* SkGrPixelRef::getTexture() {
bsalomon49f085d2014-09-05 13:34:00 -0700122 if (fSurface) {
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000123 return fSurface->asTexture();
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000124 }
125 return NULL;
126}
127
reede4538f52014-06-11 06:09:50 -0700128SkPixelRef* SkGrPixelRef::deepCopy(SkColorType dstCT, const SkIRect* subset) {
robertphillips@google.comd881bc12012-06-28 20:02:39 +0000129 if (NULL == fSurface) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000130 return NULL;
131 }
piotaixr0e977052014-09-17 16:24:04 -0700132
robertphillips@google.comd881bc12012-06-28 20:02:39 +0000133 // Note that when copying a render-target-backed pixel ref, we
134 // return a texture-backed pixel ref instead. This is because
135 // render-target pixel refs are usually created in conjunction with
136 // a GrTexture owned elsewhere (e.g., SkGpuDevice), and cannot live
137 // independently of that texture. Texture-backed pixel refs, on the other
138 // hand, own their GrTextures, and are thus self-contained.
junov96c118e2014-09-26 13:09:47 -0700139 return copy_to_new_texture_pixelref(fSurface->asTexture(), dstCT, subset);
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000140}
141
piotaixr0e977052014-09-17 16:24:04 -0700142static bool tryAllocBitmapPixels(SkBitmap* bitmap) {
143 SkBitmap::Allocator* allocator = SkBitmapCache::GetAllocator();
144 if (NULL != allocator) {
145 return allocator->allocPixelRef(bitmap, 0);
146 } else {
147 // DiscardableMemory is not available, fallback to default allocator
148 return bitmap->tryAllocPixels();
149 }
150}
151
robertphillips@google.comd881bc12012-06-28 20:02:39 +0000152bool SkGrPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000153 if (NULL == fSurface || fSurface->wasDestroyed()) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000154 return false;
155 }
robertphillips@google.comd881bc12012-06-28 20:02:39 +0000156
piotaixr0e977052014-09-17 16:24:04 -0700157 SkIRect bounds;
bsalomon49f085d2014-09-05 13:34:00 -0700158 if (subset) {
piotaixr0e977052014-09-17 16:24:04 -0700159 bounds = *subset;
robertphillips@google.comd881bc12012-06-28 20:02:39 +0000160 } else {
piotaixr0e977052014-09-17 16:24:04 -0700161 bounds = SkIRect::MakeWH(this->info().width(), this->info().height());
robertphillips@google.comd881bc12012-06-28 20:02:39 +0000162 }
piotaixr0e977052014-09-17 16:24:04 -0700163
164 //Check the cache
165 if(!SkBitmapCache::Find(this->getGenerationID(), bounds, dst)) {
166 //Cache miss
167
168 SkBitmap cachedBitmap;
169 cachedBitmap.setInfo(this->info().makeWH(bounds.width(), bounds.height()));
170
171 // If we can't alloc the pixels, then fail
172 if (!tryAllocBitmapPixels(&cachedBitmap)) {
173 return false;
174 }
175
176 // Try to read the pixels from the surface
177 void* buffer = cachedBitmap.getPixels();
178 bool readPixelsOk = fSurface->readPixels(bounds.fLeft, bounds.fTop,
179 bounds.width(), bounds.height(),
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000180 kSkia8888_GrPixelConfig,
piotaixr0e977052014-09-17 16:24:04 -0700181 buffer, cachedBitmap.rowBytes());
182
183 if (!readPixelsOk) {
184 return false;
185 }
186
187 // If we are here, pixels were read correctly from the surface.
188 cachedBitmap.setImmutable();
189 //Add to the cache
190 SkBitmapCache::Add(this->getGenerationID(), bounds, cachedBitmap);
191
192 dst->swap(cachedBitmap);
193 }
194
195 return true;
196
reed@google.com4281d652011-04-08 18:54:20 +0000197}