blob: 6452aae9b1eee2dff070ce858c5457926ecca4bb [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 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.
bsalomon@google.com669fdc42011-04-05 17:08:27 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.com669fdc42011-04-05 17:08:27 +000010#include "GrTexture.h"
bsalomon@google.comaa5b6732011-07-29 15:13:20 +000011
bsalomon@google.com669fdc42011-04-05 17:08:27 +000012#include "GrContext.h"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000013#include "GrDrawTargetCaps.h"
bsalomon@google.com05ef5102011-05-02 21:14:59 +000014#include "GrGpu.h"
bsalomon@google.comaa5b6732011-07-29 15:13:20 +000015#include "GrRenderTarget.h"
robertphillips@google.coma1e57952012-06-04 20:05:28 +000016#include "GrResourceCache.h"
bsalomon@google.com8295dc12011-05-02 12:53:34 +000017
robertphillips@google.com4d73ac22012-06-13 18:54:08 +000018SK_DEFINE_INST_COUNT(GrTexture)
19
bsalomon@google.com686bcb82013-04-09 15:04:12 +000020GrTexture::~GrTexture() {
21 if (NULL != fRenderTarget.get()) {
22 fRenderTarget.get()->owningTextureDestroyed();
23 }
24}
25
rmistry@google.comd6176b02012-08-23 18:14:13 +000026/**
robertphillips@google.com15c0fea2012-06-22 12:41:43 +000027 * This method allows us to interrupt the normal deletion process and place
28 * textures back in the texture cache when their ref count goes to zero.
29 */
30void GrTexture::internal_dispose() const {
31
32 if (this->isSetFlag((GrTextureFlags) kReturnToCache_FlagBit) &&
33 NULL != this->INHERITED::getContext()) {
34 GrTexture* nonConstThis = const_cast<GrTexture *>(this);
35 this->fRefCnt = 1; // restore ref count to initial setting
36
37 nonConstThis->resetFlag((GrTextureFlags) kReturnToCache_FlagBit);
38 nonConstThis->INHERITED::getContext()->addExistingTextureToCache(nonConstThis);
39
rmistry@google.comd6176b02012-08-23 18:14:13 +000040 // Note: "this" texture might be freed inside addExistingTextureToCache
robertphillips@google.comf41f4d22012-06-25 17:26:29 +000041 // if it is purged.
robertphillips@google.com15c0fea2012-06-22 12:41:43 +000042 return;
43 }
44
45 this->INHERITED::internal_dispose();
46}
47
bsalomon@google.com669fdc42011-04-05 17:08:27 +000048bool GrTexture::readPixels(int left, int top, int width, int height,
bsalomon@google.com6f379512011-11-16 20:36:03 +000049 GrPixelConfig config, void* buffer,
bsalomon@google.com0342a852012-08-20 19:22:38 +000050 size_t rowBytes, uint32_t pixelOpsFlags) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +000051 // go through context so that all necessary flushing occurs
bsalomon@google.com6f379512011-11-16 20:36:03 +000052 GrContext* context = this->getContext();
53 if (NULL == context) {
54 return false;
55 }
bsalomon@google.com669fdc42011-04-05 17:08:27 +000056 return context->readTexturePixels(this,
bsalomon@google.com0342a852012-08-20 19:22:38 +000057 left, top, width, height,
58 config, buffer, rowBytes,
59 pixelOpsFlags);
bsalomon@google.com6f379512011-11-16 20:36:03 +000060}
61
62void GrTexture::writePixels(int left, int top, int width, int height,
63 GrPixelConfig config, const void* buffer,
bsalomon@google.com0342a852012-08-20 19:22:38 +000064 size_t rowBytes, uint32_t pixelOpsFlags) {
bsalomon@google.com6f379512011-11-16 20:36:03 +000065 // go through context so that all necessary flushing occurs
66 GrContext* context = this->getContext();
67 if (NULL == context) {
68 return;
69 }
70 context->writeTexturePixels(this,
bsalomon@google.com0342a852012-08-20 19:22:38 +000071 left, top, width, height,
72 config, buffer, rowBytes,
73 pixelOpsFlags);
bsalomon@google.com669fdc42011-04-05 17:08:27 +000074}
bsalomon@google.comcee661a2011-07-26 12:32:36 +000075
robertphillips@google.com15c0fea2012-06-22 12:41:43 +000076void GrTexture::onRelease() {
77 GrAssert(!this->isSetFlag((GrTextureFlags) kReturnToCache_FlagBit));
robertphillips@google.comd3645542012-09-05 18:37:39 +000078 INHERITED::onRelease();
robertphillips@google.com15c0fea2012-06-22 12:41:43 +000079}
80
bsalomon@google.comaa5b6732011-07-29 15:13:20 +000081void GrTexture::onAbandon() {
bsalomon@google.com686bcb82013-04-09 15:04:12 +000082 if (NULL != fRenderTarget.get()) {
bsalomon@google.comaa5b6732011-07-29 15:13:20 +000083 fRenderTarget->abandon();
84 }
robertphillips@google.comd3645542012-09-05 18:37:39 +000085 INHERITED::onAbandon();
bsalomon@google.comaa5b6732011-07-29 15:13:20 +000086}
87
robertphillips@google.com32716282012-06-04 12:48:45 +000088void GrTexture::validateDesc() const {
89 if (NULL != this->asRenderTarget()) {
90 // This texture has a render target
91 GrAssert(0 != (fDesc.fFlags & kRenderTarget_GrTextureFlagBit));
92
93 if (NULL != this->asRenderTarget()->getStencilBuffer()) {
94 GrAssert(0 != (fDesc.fFlags & kNoStencil_GrTextureFlagBit));
95 } else {
96 GrAssert(0 == (fDesc.fFlags & kNoStencil_GrTextureFlagBit));
97 }
98
99 GrAssert(fDesc.fSampleCnt == this->asRenderTarget()->numSamples());
100 } else {
101 GrAssert(0 == (fDesc.fFlags & kRenderTarget_GrTextureFlagBit));
102 GrAssert(0 == (fDesc.fFlags & kNoStencil_GrTextureFlagBit));
103 GrAssert(0 == fDesc.fSampleCnt);
104 }
105}
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000106
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000107// These flags need to fit in a GrResourceKey::ResourceFlags so they can be folded into the texture
robertphillips@google.com46a86002012-08-08 10:42:44 +0000108// key
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000109enum TextureFlags {
110 /**
111 * The kStretchToPOT bit is set when the texture is NPOT and is being repeated but the
112 * hardware doesn't support that feature.
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000113 */
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000114 kStretchToPOT_TextureFlag = 0x1,
115 /**
116 * The kFilter bit can only be set when the kStretchToPOT flag is set and indicates whether the
skia.committer@gmail.com2859eb72012-12-21 02:01:28 +0000117 * stretched texture should be bilerp filtered or point sampled.
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000118 */
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000119 kFilter_TextureFlag = 0x2,
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000120};
121
122namespace {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000123GrResourceKey::ResourceFlags get_texture_flags(const GrGpu* gpu,
124 const GrTextureParams* params,
125 const GrTextureDesc& desc) {
126 GrResourceKey::ResourceFlags flags = 0;
127 bool tiled = NULL != params && params->isTiled();
bsalomon@google.combcce8922013-03-25 15:38:39 +0000128 if (tiled && !gpu->caps()->npotTextureTileSupport()) {
robertphillips@google.combe61c052013-01-04 16:33:44 +0000129 if (!GrIsPow2(desc.fWidth) || !GrIsPow2(desc.fHeight)) {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000130 flags |= kStretchToPOT_TextureFlag;
bsalomon@google.comb8670992012-07-25 21:27:09 +0000131 if (params->isBilerp()) {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000132 flags |= kFilter_TextureFlag;
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000133 }
134 }
135 }
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000136 return flags;
137}
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000138
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000139GrResourceKey::ResourceType texture_resource_type() {
140 static const GrResourceKey::ResourceType gType = GrResourceKey::GenerateResourceType();
141 return gType;
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000142}
senorblanco@chromium.org709906b2013-02-07 00:35:25 +0000143
144// FIXME: This should be refactored with the code in gl/GrGpuGL.cpp.
145GrSurfaceOrigin resolve_origin(const GrTextureDesc& desc) {
146 // By default, GrRenderTargets are GL's normal orientation so that they
147 // can be drawn to by the outside world without the client having
148 // to render upside down.
149 bool renderTarget = 0 != (desc.fFlags & kRenderTarget_GrTextureFlagBit);
150 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
151 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
152 } else {
153 return desc.fOrigin;
154 }
155}
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000156}
157
158GrResourceKey GrTexture::ComputeKey(const GrGpu* gpu,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000159 const GrTextureParams* params,
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000160 const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000161 const GrCacheID& cacheID) {
162 GrResourceKey::ResourceFlags flags = get_texture_flags(gpu, params, desc);
163 return GrResourceKey(cacheID, texture_resource_type(), flags);
164}
robertphillips@google.com46a86002012-08-08 10:42:44 +0000165
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000166GrResourceKey GrTexture::ComputeScratchKey(const GrTextureDesc& desc) {
167 GrCacheID::Key idKey;
168 // Instead of a client-provided key of the texture contents we create a key from the
169 // descriptor.
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000170 GR_STATIC_ASSERT(sizeof(idKey) >= 16);
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000171 GrAssert(desc.fHeight < (1 << 16));
172 GrAssert(desc.fWidth < (1 << 16));
173 idKey.fData32[0] = (desc.fWidth) | (desc.fHeight << 16);
174 idKey.fData32[1] = desc.fConfig | desc.fSampleCnt << 16;
175 idKey.fData32[2] = desc.fFlags;
senorblanco@chromium.org709906b2013-02-07 00:35:25 +0000176 idKey.fData32[3] = resolve_origin(desc); // Only needs 2 bits actually
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000177 static const int kPadSize = sizeof(idKey) - 16;
178 GR_STATIC_ASSERT(kPadSize >= 0);
179 memset(idKey.fData8 + 16, 0, kPadSize);
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000180
181 GrCacheID cacheID(GrResourceKey::ScratchDomain(), idKey);
182 return GrResourceKey(cacheID, texture_resource_type(), 0);
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000183}
184
185bool GrTexture::NeedsResizing(const GrResourceKey& key) {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000186 return SkToBool(key.getResourceFlags() & kStretchToPOT_TextureFlag);
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000187}
188
189bool GrTexture::NeedsFiltering(const GrResourceKey& key) {
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000190 return SkToBool(key.getResourceFlags() & kFilter_TextureFlag);
robertphillips@google.coma1e57952012-06-04 20:05:28 +0000191}