epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * 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.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
bsalomon@google.com | 1fadb20 | 2011-12-12 16:10:08 +0000 | [diff] [blame] | 10 | #include "GrContext.h" |
| 11 | |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 12 | #include "effects/GrConvolutionEffect.h" |
tomhudson@google.com | aa72eab | 2012-07-19 18:01:07 +0000 | [diff] [blame] | 13 | #include "effects/GrSingleTextureEffect.h" |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 14 | #include "effects/GrConfigConversionEffect.h" |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 15 | |
tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 16 | #include "GrBufferAllocPool.h" |
bsalomon@google.com | 05ef510 | 2011-05-02 21:14:59 +0000 | [diff] [blame] | 17 | #include "GrGpu.h" |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 18 | #include "GrDrawTargetCaps.h" |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 19 | #include "GrIndexBuffer.h" |
| 20 | #include "GrInOrderDrawBuffer.h" |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 21 | #include "GrOvalRenderer.h" |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 22 | #include "GrPathRenderer.h" |
tomhudson@google.com | d22b6e4 | 2011-06-24 15:53:40 +0000 | [diff] [blame] | 23 | #include "GrPathUtils.h" |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 24 | #include "GrResourceCache.h" |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 25 | #include "GrSoftwarePathRenderer.h" |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 26 | #include "GrStencilBuffer.h" |
tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 27 | #include "GrTextStrike.h" |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 28 | #include "SkRTConf.h" |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 29 | #include "SkStrokeRec.h" |
bsalomon@google.com | 8c2fe99 | 2011-09-13 15:27:18 +0000 | [diff] [blame] | 30 | #include "SkTLazy.h" |
bsalomon@google.com | c0af317 | 2012-06-15 14:10:09 +0000 | [diff] [blame] | 31 | #include "SkTLS.h" |
tomhudson@google.com | 0c8d93a | 2011-07-01 17:08:26 +0000 | [diff] [blame] | 32 | #include "SkTrace.h" |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 33 | |
reed@google.com | fa35e3d | 2012-06-26 20:16:17 +0000 | [diff] [blame] | 34 | SK_DEFINE_INST_COUNT(GrContext) |
| 35 | SK_DEFINE_INST_COUNT(GrDrawState) |
| 36 | |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 37 | // It can be useful to set this to false to test whether a bug is caused by using the |
bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 38 | // InOrderDrawBuffer, to compare performance of using/not using InOrderDrawBuffer, or to make |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 39 | // debugging simpler. |
jvanverth@google.com | 65eb4d5 | 2013-03-19 18:51:02 +0000 | [diff] [blame] | 40 | SK_CONF_DECLARE(bool, c_Defer, "gpu.deferContext", true, |
| 41 | "Defers rendering in GrContext via GrInOrderDrawBuffer."); |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 42 | |
| 43 | #define BUFFERED_DRAW (c_Defer ? kYes_BufferedDraw : kNo_BufferedDraw) |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 44 | |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 45 | #define MAX_BLUR_SIGMA 4.0f |
| 46 | |
bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 47 | // When we're using coverage AA but the blend is incompatible (given gpu |
| 48 | // limitations) should we disable AA or draw wrong? |
bsalomon@google.com | 950d7a8 | 2011-09-28 15:05:33 +0000 | [diff] [blame] | 49 | #define DISABLE_COVERAGE_AA_FOR_BLEND 1 |
bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 50 | |
reed@google.com | 4b2d3f3 | 2012-05-15 18:05:50 +0000 | [diff] [blame] | 51 | #if GR_DEBUG |
| 52 | // change this to a 1 to see notifications when partial coverage fails |
| 53 | #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0 |
| 54 | #else |
| 55 | #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0 |
| 56 | #endif |
| 57 | |
robertphillips@google.com | 1947ba6 | 2012-10-17 13:35:24 +0000 | [diff] [blame] | 58 | static const size_t MAX_TEXTURE_CACHE_COUNT = 2048; |
djsollen@google.com | 42041e6 | 2012-10-29 19:24:45 +0000 | [diff] [blame] | 59 | static const size_t MAX_TEXTURE_CACHE_BYTES = GR_DEFAULT_TEXTURE_CACHE_MB_LIMIT * 1024 * 1024; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 60 | |
bsalomon@google.com | 6036149 | 2012-03-15 17:47:06 +0000 | [diff] [blame] | 61 | static const size_t DRAW_BUFFER_VBPOOL_BUFFER_SIZE = 1 << 15; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 62 | static const int DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS = 4; |
| 63 | |
bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 64 | static const size_t DRAW_BUFFER_IBPOOL_BUFFER_SIZE = 1 << 11; |
| 65 | static const int DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS = 4; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 66 | |
bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 67 | #define ASSERT_OWNED_RESOURCE(R) GrAssert(!(R) || (R)->getContext() == this) |
| 68 | |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 69 | GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext) { |
| 70 | GrContext* context = SkNEW(GrContext); |
| 71 | if (context->init(backend, backendContext)) { |
| 72 | return context; |
| 73 | } else { |
| 74 | context->unref(); |
| 75 | return NULL; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 76 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 77 | } |
| 78 | |
bsalomon@google.com | c0af317 | 2012-06-15 14:10:09 +0000 | [diff] [blame] | 79 | namespace { |
| 80 | void* CreateThreadInstanceCount() { |
tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 81 | return SkNEW_ARGS(int, (0)); |
bsalomon@google.com | c0af317 | 2012-06-15 14:10:09 +0000 | [diff] [blame] | 82 | } |
| 83 | void DeleteThreadInstanceCount(void* v) { |
| 84 | delete reinterpret_cast<int*>(v); |
| 85 | } |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 86 | #define THREAD_INSTANCE_COUNT \ |
| 87 | (*reinterpret_cast<int*>(SkTLS::Get(CreateThreadInstanceCount, DeleteThreadInstanceCount))) |
| 88 | } |
bsalomon@google.com | c0af317 | 2012-06-15 14:10:09 +0000 | [diff] [blame] | 89 | |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 90 | GrContext::GrContext() { |
| 91 | ++THREAD_INSTANCE_COUNT; |
| 92 | fDrawState = NULL; |
| 93 | fGpu = NULL; |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 94 | fClip = NULL; |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 95 | fPathRendererChain = NULL; |
| 96 | fSoftwarePathRenderer = NULL; |
| 97 | fTextureCache = NULL; |
| 98 | fFontCache = NULL; |
| 99 | fDrawBuffer = NULL; |
| 100 | fDrawBufferVBAllocPool = NULL; |
| 101 | fDrawBufferIBAllocPool = NULL; |
| 102 | fAARectRenderer = NULL; |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 103 | fOvalRenderer = NULL; |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 104 | fViewMatrix.reset(); |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | bool GrContext::init(GrBackend backend, GrBackendContext backendContext) { |
| 108 | GrAssert(NULL == fGpu); |
| 109 | |
| 110 | fGpu = GrGpu::Create(backend, backendContext, this); |
| 111 | if (NULL == fGpu) { |
| 112 | return false; |
| 113 | } |
| 114 | |
| 115 | fDrawState = SkNEW(GrDrawState); |
| 116 | fGpu->setDrawState(fDrawState); |
| 117 | |
| 118 | |
| 119 | fTextureCache = SkNEW_ARGS(GrResourceCache, |
| 120 | (MAX_TEXTURE_CACHE_COUNT, |
| 121 | MAX_TEXTURE_CACHE_BYTES)); |
| 122 | fFontCache = SkNEW_ARGS(GrFontCache, (fGpu)); |
| 123 | |
| 124 | fLastDrawWasBuffered = kNo_BufferedDraw; |
| 125 | |
| 126 | fAARectRenderer = SkNEW(GrAARectRenderer); |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 127 | fOvalRenderer = SkNEW(GrOvalRenderer); |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 128 | |
| 129 | fDidTestPMConversions = false; |
| 130 | |
| 131 | this->setupDrawBuffer(); |
| 132 | |
| 133 | return true; |
bsalomon@google.com | c0af317 | 2012-06-15 14:10:09 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | int GrContext::GetThreadInstanceCount() { |
| 137 | return THREAD_INSTANCE_COUNT; |
| 138 | } |
| 139 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 140 | GrContext::~GrContext() { |
robertphillips@google.com | cdb426d | 2012-09-24 19:33:59 +0000 | [diff] [blame] | 141 | for (int i = 0; i < fCleanUpData.count(); ++i) { |
| 142 | (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo); |
| 143 | } |
| 144 | |
bsalomon@google.com | 733c062 | 2013-04-24 17:59:32 +0000 | [diff] [blame] | 145 | if (NULL == fGpu) { |
| 146 | return; |
| 147 | } |
| 148 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 149 | this->flush(); |
robertphillips@google.com | 5acc0e3 | 2012-05-17 12:01:02 +0000 | [diff] [blame] | 150 | |
| 151 | // Since the gpu can hold scratch textures, give it a chance to let go |
| 152 | // of them before freeing the texture cache |
| 153 | fGpu->purgeResources(); |
| 154 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 155 | delete fTextureCache; |
robertphillips@google.com | eb9b3e1 | 2012-09-11 12:50:53 +0000 | [diff] [blame] | 156 | fTextureCache = NULL; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 157 | delete fFontCache; |
| 158 | delete fDrawBuffer; |
| 159 | delete fDrawBufferVBAllocPool; |
bsalomon@google.com | de6ac2d | 2011-02-25 21:50:42 +0000 | [diff] [blame] | 160 | delete fDrawBufferIBAllocPool; |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 161 | |
robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 162 | fAARectRenderer->unref(); |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 163 | fOvalRenderer->unref(); |
robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 164 | |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 165 | fGpu->unref(); |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 166 | GrSafeUnref(fPathRendererChain); |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 167 | GrSafeUnref(fSoftwarePathRenderer); |
bsalomon@google.com | 10e04bf | 2012-03-30 14:35:04 +0000 | [diff] [blame] | 168 | fDrawState->unref(); |
bsalomon@google.com | c0af317 | 2012-06-15 14:10:09 +0000 | [diff] [blame] | 169 | |
| 170 | --THREAD_INSTANCE_COUNT; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 171 | } |
| 172 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 173 | void GrContext::contextLost() { |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 174 | this->contextDestroyed(); |
junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 175 | this->setupDrawBuffer(); |
| 176 | } |
| 177 | |
| 178 | void GrContext::contextDestroyed() { |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 179 | // abandon first to so destructors |
| 180 | // don't try to free the resources in the API. |
| 181 | fGpu->abandonResources(); |
| 182 | |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 183 | // a path renderer may be holding onto resources that |
| 184 | // are now unusable |
| 185 | GrSafeSetNull(fPathRendererChain); |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 186 | GrSafeSetNull(fSoftwarePathRenderer); |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 187 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 188 | delete fDrawBuffer; |
| 189 | fDrawBuffer = NULL; |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 190 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 191 | delete fDrawBufferVBAllocPool; |
| 192 | fDrawBufferVBAllocPool = NULL; |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 193 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 194 | delete fDrawBufferIBAllocPool; |
| 195 | fDrawBufferIBAllocPool = NULL; |
| 196 | |
robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 197 | fAARectRenderer->reset(); |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 198 | |
bsalomon@google.com | a292112 | 2012-08-28 12:34:17 +0000 | [diff] [blame] | 199 | fTextureCache->purgeAllUnlocked(); |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 200 | fFontCache->freeAll(); |
| 201 | fGpu->markContextDirty(); |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | void GrContext::resetContext() { |
| 205 | fGpu->markContextDirty(); |
| 206 | } |
| 207 | |
| 208 | void GrContext::freeGpuResources() { |
| 209 | this->flush(); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 210 | |
robertphillips@google.com | ff17584 | 2012-05-14 19:31:39 +0000 | [diff] [blame] | 211 | fGpu->purgeResources(); |
| 212 | |
robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 213 | fAARectRenderer->reset(); |
| 214 | |
bsalomon@google.com | a292112 | 2012-08-28 12:34:17 +0000 | [diff] [blame] | 215 | fTextureCache->purgeAllUnlocked(); |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 216 | fFontCache->freeAll(); |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 217 | // a path renderer may be holding onto resources |
| 218 | GrSafeSetNull(fPathRendererChain); |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 219 | GrSafeSetNull(fSoftwarePathRenderer); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 220 | } |
| 221 | |
twiz@google.com | 05e7024 | 2012-01-27 19:12:00 +0000 | [diff] [blame] | 222 | size_t GrContext::getGpuTextureCacheBytes() const { |
| 223 | return fTextureCache->getCachedResourceBytes(); |
| 224 | } |
| 225 | |
bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 226 | //////////////////////////////////////////////////////////////////////////////// |
| 227 | |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 228 | namespace { |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 229 | |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 230 | void scale_rect(SkRect* rect, float xScale, float yScale) { |
robertphillips@google.com | 5af5606 | 2012-04-27 15:39:52 +0000 | [diff] [blame] | 231 | rect->fLeft = SkScalarMul(rect->fLeft, SkFloatToScalar(xScale)); |
| 232 | rect->fTop = SkScalarMul(rect->fTop, SkFloatToScalar(yScale)); |
| 233 | rect->fRight = SkScalarMul(rect->fRight, SkFloatToScalar(xScale)); |
| 234 | rect->fBottom = SkScalarMul(rect->fBottom, SkFloatToScalar(yScale)); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 235 | } |
| 236 | |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 237 | float adjust_sigma(float sigma, int *scaleFactor, int *radius) { |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 238 | *scaleFactor = 1; |
| 239 | while (sigma > MAX_BLUR_SIGMA) { |
| 240 | *scaleFactor *= 2; |
| 241 | sigma *= 0.5f; |
| 242 | } |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 243 | *radius = static_cast<int>(ceilf(sigma * 3.0f)); |
| 244 | GrAssert(*radius <= GrConvolutionEffect::kMaxKernelRadius); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 245 | return sigma; |
| 246 | } |
| 247 | |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 248 | void convolve_gaussian(GrDrawTarget* target, |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 249 | GrTexture* texture, |
| 250 | const SkRect& rect, |
| 251 | float sigma, |
| 252 | int radius, |
| 253 | Gr1DKernelEffect::Direction direction) { |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 254 | GrRenderTarget* rt = target->drawState()->getRenderTarget(); |
| 255 | GrDrawTarget::AutoStateRestore asr(target, GrDrawTarget::kReset_ASRInit); |
| 256 | GrDrawState* drawState = target->drawState(); |
| 257 | drawState->setRenderTarget(rt); |
bsalomon@google.com | c5fae9e | 2013-01-24 19:00:02 +0000 | [diff] [blame] | 258 | SkAutoTUnref<GrEffectRef> conv(GrConvolutionEffect::CreateGaussian(texture, |
bsalomon@google.com | 6340a41 | 2013-01-22 19:55:59 +0000 | [diff] [blame] | 259 | direction, |
| 260 | radius, |
| 261 | sigma)); |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 262 | drawState->setEffect(0, conv); |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 263 | target->drawSimpleRect(rect, NULL); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 264 | } |
| 265 | |
bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 266 | } |
| 267 | |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 268 | //////////////////////////////////////////////////////////////////////////////// |
| 269 | |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 270 | GrTexture* GrContext::findAndRefTexture(const GrTextureDesc& desc, |
| 271 | const GrCacheID& cacheID, |
| 272 | const GrTextureParams* params) { |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 273 | GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheID); |
robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 274 | GrResource* resource = fTextureCache->find(resourceKey); |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 275 | SkSafeRef(resource); |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 276 | return static_cast<GrTexture*>(resource); |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 277 | } |
| 278 | |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 279 | bool GrContext::isTextureInCache(const GrTextureDesc& desc, |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 280 | const GrCacheID& cacheID, |
bsalomon@google.com | b867099 | 2012-07-25 21:27:09 +0000 | [diff] [blame] | 281 | const GrTextureParams* params) const { |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 282 | GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheID); |
bsalomon@google.com | fb30951 | 2011-11-30 14:13:48 +0000 | [diff] [blame] | 283 | return fTextureCache->hasKey(resourceKey); |
| 284 | } |
| 285 | |
robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 286 | void GrContext::addStencilBuffer(GrStencilBuffer* sb) { |
bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 287 | ASSERT_OWNED_RESOURCE(sb); |
robertphillips@google.com | 46a8600 | 2012-08-08 10:42:44 +0000 | [diff] [blame] | 288 | |
| 289 | GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(sb->width(), |
| 290 | sb->height(), |
| 291 | sb->numSamples()); |
robertphillips@google.com | 209a114 | 2012-10-31 12:25:21 +0000 | [diff] [blame] | 292 | fTextureCache->addResource(resourceKey, sb); |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 293 | } |
| 294 | |
robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 295 | GrStencilBuffer* GrContext::findStencilBuffer(int width, int height, |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 296 | int sampleCnt) { |
robertphillips@google.com | 46a8600 | 2012-08-08 10:42:44 +0000 | [diff] [blame] | 297 | GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(width, |
| 298 | height, |
| 299 | sampleCnt); |
robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 300 | GrResource* resource = fTextureCache->find(resourceKey); |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 301 | return static_cast<GrStencilBuffer*>(resource); |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 302 | } |
| 303 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 304 | static void stretchImage(void* dst, |
| 305 | int dstW, |
| 306 | int dstH, |
| 307 | void* src, |
| 308 | int srcW, |
| 309 | int srcH, |
| 310 | int bpp) { |
| 311 | GrFixed dx = (srcW << 16) / dstW; |
| 312 | GrFixed dy = (srcH << 16) / dstH; |
| 313 | |
| 314 | GrFixed y = dy >> 1; |
| 315 | |
| 316 | int dstXLimit = dstW*bpp; |
| 317 | for (int j = 0; j < dstH; ++j) { |
| 318 | GrFixed x = dx >> 1; |
| 319 | void* srcRow = (uint8_t*)src + (y>>16)*srcW*bpp; |
| 320 | void* dstRow = (uint8_t*)dst + j*dstW*bpp; |
| 321 | for (int i = 0; i < dstXLimit; i += bpp) { |
| 322 | memcpy((uint8_t*) dstRow + i, |
| 323 | (uint8_t*) srcRow + (x>>16)*bpp, |
| 324 | bpp); |
| 325 | x += dx; |
| 326 | } |
| 327 | y += dy; |
| 328 | } |
| 329 | } |
| 330 | |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 331 | namespace { |
| 332 | |
| 333 | // position + local coordinate |
| 334 | extern const GrVertexAttrib gVertexAttribs[] = { |
| 335 | {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding}, |
| 336 | {kVec2f_GrVertexAttribType, sizeof(GrPoint), kLocalCoord_GrVertexAttribBinding} |
| 337 | }; |
| 338 | |
| 339 | }; |
| 340 | |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 341 | // The desired texture is NPOT and tiled but that isn't supported by |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 342 | // the current hardware. Resize the texture to be a POT |
| 343 | GrTexture* GrContext::createResizedTexture(const GrTextureDesc& desc, |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 344 | const GrCacheID& cacheID, |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 345 | void* srcData, |
| 346 | size_t rowBytes, |
| 347 | bool needsFiltering) { |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 348 | SkAutoTUnref<GrTexture> clampedTexture(this->findAndRefTexture(desc, cacheID, NULL)); |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 349 | if (NULL == clampedTexture) { |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 350 | clampedTexture.reset(this->createTexture(NULL, desc, cacheID, srcData, rowBytes)); |
robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 351 | |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 352 | if (NULL == clampedTexture) { |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 353 | return NULL; |
| 354 | } |
| 355 | } |
robertphillips@google.com | 0d25eef | 2012-09-11 21:25:51 +0000 | [diff] [blame] | 356 | |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 357 | GrTextureDesc rtDesc = desc; |
| 358 | rtDesc.fFlags = rtDesc.fFlags | |
| 359 | kRenderTarget_GrTextureFlagBit | |
| 360 | kNoStencil_GrTextureFlagBit; |
| 361 | rtDesc.fWidth = GrNextPow2(GrMax(desc.fWidth, 64)); |
| 362 | rtDesc.fHeight = GrNextPow2(GrMax(desc.fHeight, 64)); |
| 363 | |
| 364 | GrTexture* texture = fGpu->createTexture(rtDesc, NULL, 0); |
| 365 | |
| 366 | if (NULL != texture) { |
| 367 | GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit); |
| 368 | GrDrawState* drawState = fGpu->drawState(); |
| 369 | drawState->setRenderTarget(texture->asRenderTarget()); |
| 370 | |
| 371 | // if filtering is not desired then we want to ensure all |
| 372 | // texels in the resampled image are copies of texels from |
| 373 | // the original. |
bsalomon@google.com | 1ce49fc | 2012-09-18 14:14:49 +0000 | [diff] [blame] | 374 | GrTextureParams params(SkShader::kClamp_TileMode, needsFiltering); |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 375 | drawState->createTextureEffect(0, clampedTexture, SkMatrix::I(), params); |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 376 | |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 377 | drawState->setVertexAttribs<gVertexAttribs>(SK_ARRAY_COUNT(gVertexAttribs)); |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 378 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 379 | GrDrawTarget::AutoReleaseGeometry arg(fGpu, 4, 0); |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 380 | |
| 381 | if (arg.succeeded()) { |
| 382 | GrPoint* verts = (GrPoint*) arg.vertices(); |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 383 | verts[0].setIRectFan(0, 0, texture->width(), texture->height(), 2 * sizeof(GrPoint)); |
| 384 | verts[1].setIRectFan(0, 0, 1, 1, 2 * sizeof(GrPoint)); |
| 385 | fGpu->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4); |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 386 | } |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 387 | } else { |
| 388 | // TODO: Our CPU stretch doesn't filter. But we create separate |
bsalomon@google.com | 08283af | 2012-10-26 13:01:20 +0000 | [diff] [blame] | 389 | // stretched textures when the texture params is either filtered or |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 390 | // not. Either implement filtered stretch blit on CPU or just create |
| 391 | // one when FBO case fails. |
| 392 | |
| 393 | rtDesc.fFlags = kNone_GrTextureFlags; |
| 394 | // no longer need to clamp at min RT size. |
| 395 | rtDesc.fWidth = GrNextPow2(desc.fWidth); |
| 396 | rtDesc.fHeight = GrNextPow2(desc.fHeight); |
| 397 | int bpp = GrBytesPerPixel(desc.fConfig); |
bsalomon@google.com | 08283af | 2012-10-26 13:01:20 +0000 | [diff] [blame] | 398 | SkAutoSMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight); |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 399 | stretchImage(stretchedPixels.get(), rtDesc.fWidth, rtDesc.fHeight, |
bsalomon@google.com | 08283af | 2012-10-26 13:01:20 +0000 | [diff] [blame] | 400 | srcData, desc.fWidth, desc.fHeight, bpp); |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 401 | |
| 402 | size_t stretchedRowBytes = rtDesc.fWidth * bpp; |
| 403 | |
jvanverth@google.com | 65eb4d5 | 2013-03-19 18:51:02 +0000 | [diff] [blame] | 404 | SkDEBUGCODE(GrTexture* texture = )fGpu->createTexture(rtDesc, stretchedPixels.get(), |
| 405 | stretchedRowBytes); |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 406 | GrAssert(NULL != texture); |
| 407 | } |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 408 | |
| 409 | return texture; |
| 410 | } |
| 411 | |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 412 | GrTexture* GrContext::createTexture(const GrTextureParams* params, |
| 413 | const GrTextureDesc& desc, |
| 414 | const GrCacheID& cacheID, |
| 415 | void* srcData, |
| 416 | size_t rowBytes) { |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 417 | SK_TRACE_EVENT0("GrContext::createTexture"); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 418 | |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 419 | GrResourceKey resourceKey = GrTexture::ComputeKey(fGpu, params, desc, cacheID); |
robertphillips@google.com | a1e5795 | 2012-06-04 20:05:28 +0000 | [diff] [blame] | 420 | |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 421 | GrTexture* texture; |
robertphillips@google.com | a1e5795 | 2012-06-04 20:05:28 +0000 | [diff] [blame] | 422 | if (GrTexture::NeedsResizing(resourceKey)) { |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 423 | texture = this->createResizedTexture(desc, cacheID, |
| 424 | srcData, rowBytes, |
| 425 | GrTexture::NeedsFiltering(resourceKey)); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 426 | } else { |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 427 | texture= fGpu->createTexture(desc, srcData, rowBytes); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 428 | } |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 429 | |
| 430 | if (NULL != texture) { |
robertphillips@google.com | 209a114 | 2012-10-31 12:25:21 +0000 | [diff] [blame] | 431 | fTextureCache->addResource(resourceKey, texture); |
robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 432 | } |
| 433 | |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 434 | return texture; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 435 | } |
| 436 | |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 437 | GrTexture* GrContext::lockAndRefScratchTexture(const GrTextureDesc& inDesc, ScratchTexMatch match) { |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 438 | GrTextureDesc desc = inDesc; |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 439 | |
rileya@google.com | 2afb8ec | 2012-08-23 14:08:57 +0000 | [diff] [blame] | 440 | GrAssert((desc.fFlags & kRenderTarget_GrTextureFlagBit) || |
| 441 | !(desc.fFlags & kNoStencil_GrTextureFlagBit)); |
| 442 | |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 443 | if (kApprox_ScratchTexMatch == match) { |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 444 | // bin by pow2 with a reasonable min |
bsalomon@google.com | 40db6dc | 2013-03-06 16:35:49 +0000 | [diff] [blame] | 445 | static const int MIN_SIZE = 16; |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 446 | desc.fWidth = GrMax(MIN_SIZE, GrNextPow2(desc.fWidth)); |
| 447 | desc.fHeight = GrMax(MIN_SIZE, GrNextPow2(desc.fHeight)); |
| 448 | } |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 449 | |
robertphillips@google.com | 13f181f | 2013-03-02 12:02:08 +0000 | [diff] [blame] | 450 | // Renderable A8 targets are not universally supported (e.g., not on ANGLE) |
| 451 | GrAssert(this->isConfigRenderable(kAlpha_8_GrPixelConfig) || |
| 452 | !(desc.fFlags & kRenderTarget_GrTextureFlagBit) || |
| 453 | (desc.fConfig != kAlpha_8_GrPixelConfig)); |
| 454 | |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 455 | GrResource* resource = NULL; |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 456 | int origWidth = desc.fWidth; |
| 457 | int origHeight = desc.fHeight; |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 458 | |
| 459 | do { |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 460 | GrResourceKey key = GrTexture::ComputeScratchKey(desc); |
robertphillips@google.com | 209a114 | 2012-10-31 12:25:21 +0000 | [diff] [blame] | 461 | // Ensure we have exclusive access to the texture so future 'find' calls don't return it |
| 462 | resource = fTextureCache->find(key, GrResourceCache::kHide_OwnershipFlag); |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 463 | if (NULL != resource) { |
| 464 | resource->ref(); |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 465 | break; |
| 466 | } |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 467 | if (kExact_ScratchTexMatch == match) { |
| 468 | break; |
| 469 | } |
bsalomon@google.com | 40db6dc | 2013-03-06 16:35:49 +0000 | [diff] [blame] | 470 | // We had a cache miss and we are in approx mode, relax the fit of the flags. |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 471 | |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 472 | // We no longer try to reuse textures that were previously used as render targets in |
rileya@google.com | 2afb8ec | 2012-08-23 14:08:57 +0000 | [diff] [blame] | 473 | // situations where no RT is needed; doing otherwise can confuse the video driver and |
| 474 | // cause significant performance problems in some cases. |
| 475 | if (desc.fFlags & kNoStencil_GrTextureFlagBit) { |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 476 | desc.fFlags = desc.fFlags & ~kNoStencil_GrTextureFlagBit; |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 477 | } else { |
| 478 | break; |
| 479 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 480 | |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 481 | } while (true); |
| 482 | |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 483 | if (NULL == resource) { |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 484 | desc.fFlags = inDesc.fFlags; |
| 485 | desc.fWidth = origWidth; |
| 486 | desc.fHeight = origHeight; |
bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 487 | GrTexture* texture = fGpu->createTexture(desc, NULL, 0); |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 488 | if (NULL != texture) { |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 489 | GrResourceKey key = GrTexture::ComputeScratchKey(texture->desc()); |
robertphillips@google.com | 209a114 | 2012-10-31 12:25:21 +0000 | [diff] [blame] | 490 | // Make the resource exclusive so future 'find' calls don't return it |
| 491 | fTextureCache->addResource(key, texture, GrResourceCache::kHide_OwnershipFlag); |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 492 | resource = texture; |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 493 | } |
| 494 | } |
| 495 | |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 496 | return static_cast<GrTexture*>(resource); |
bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 497 | } |
| 498 | |
robertphillips@google.com | 15c0fea | 2012-06-22 12:41:43 +0000 | [diff] [blame] | 499 | void GrContext::addExistingTextureToCache(GrTexture* texture) { |
| 500 | |
| 501 | if (NULL == texture) { |
| 502 | return; |
| 503 | } |
| 504 | |
robertphillips@google.com | 521eaf8 | 2012-08-22 11:03:19 +0000 | [diff] [blame] | 505 | // This texture should already have a cache entry since it was once |
| 506 | // attached |
| 507 | GrAssert(NULL != texture->getCacheEntry()); |
robertphillips@google.com | 9c2ea84 | 2012-08-13 17:47:59 +0000 | [diff] [blame] | 508 | |
robertphillips@google.com | 521eaf8 | 2012-08-22 11:03:19 +0000 | [diff] [blame] | 509 | // Conceptually, the cache entry is going to assume responsibility |
| 510 | // for the creation ref. |
| 511 | GrAssert(1 == texture->getRefCnt()); |
| 512 | |
| 513 | // Since this texture came from an AutoScratchTexture it should |
| 514 | // still be in the exclusive pile |
| 515 | fTextureCache->makeNonExclusive(texture->getCacheEntry()); |
| 516 | |
robertphillips@google.com | 50a035d | 2012-09-07 19:44:33 +0000 | [diff] [blame] | 517 | this->purgeCache(); |
robertphillips@google.com | 15c0fea | 2012-06-22 12:41:43 +0000 | [diff] [blame] | 518 | } |
| 519 | |
robertphillips@google.com | a9b0623 | 2012-08-30 11:06:31 +0000 | [diff] [blame] | 520 | |
robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 521 | void GrContext::unlockScratchTexture(GrTexture* texture) { |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 522 | ASSERT_OWNED_RESOURCE(texture); |
| 523 | GrAssert(NULL != texture->getCacheEntry()); |
| 524 | |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 525 | // If this is a scratch texture we detached it from the cache |
| 526 | // while it was locked (to avoid two callers simultaneously getting |
| 527 | // the same texture). |
bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 528 | if (texture->getCacheEntry()->key().isScratch()) { |
robertphillips@google.com | 521eaf8 | 2012-08-22 11:03:19 +0000 | [diff] [blame] | 529 | fTextureCache->makeNonExclusive(texture->getCacheEntry()); |
bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 530 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 531 | |
robertphillips@google.com | 50a035d | 2012-09-07 19:44:33 +0000 | [diff] [blame] | 532 | this->purgeCache(); |
| 533 | } |
| 534 | |
| 535 | void GrContext::purgeCache() { |
robertphillips@google.com | eb9b3e1 | 2012-09-11 12:50:53 +0000 | [diff] [blame] | 536 | if (NULL != fTextureCache) { |
| 537 | fTextureCache->purgeAsNeeded(); |
| 538 | } |
robertphillips@google.com | 15c0fea | 2012-06-22 12:41:43 +0000 | [diff] [blame] | 539 | } |
| 540 | |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 541 | GrTexture* GrContext::createUncachedTexture(const GrTextureDesc& descIn, |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 542 | void* srcData, |
| 543 | size_t rowBytes) { |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 544 | GrTextureDesc descCopy = descIn; |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 545 | return fGpu->createTexture(descCopy, srcData, rowBytes); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 546 | } |
| 547 | |
bsalomon@google.com | 07fc0d1 | 2012-06-22 15:15:59 +0000 | [diff] [blame] | 548 | void GrContext::getTextureCacheLimits(int* maxTextures, |
| 549 | size_t* maxTextureBytes) const { |
| 550 | fTextureCache->getLimits(maxTextures, maxTextureBytes); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 551 | } |
| 552 | |
bsalomon@google.com | 07fc0d1 | 2012-06-22 15:15:59 +0000 | [diff] [blame] | 553 | void GrContext::setTextureCacheLimits(int maxTextures, size_t maxTextureBytes) { |
| 554 | fTextureCache->setLimits(maxTextures, maxTextureBytes); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 555 | } |
| 556 | |
bsalomon@google.com | 9195836 | 2011-06-13 17:58:13 +0000 | [diff] [blame] | 557 | int GrContext::getMaxTextureSize() const { |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 558 | return fGpu->caps()->maxTextureSize(); |
bsalomon@google.com | 9195836 | 2011-06-13 17:58:13 +0000 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | int GrContext::getMaxRenderTargetSize() const { |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 562 | return fGpu->caps()->maxRenderTargetSize(); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 563 | } |
| 564 | |
bsalomon@google.com | 8a70eef | 2013-03-19 13:58:55 +0000 | [diff] [blame] | 565 | int GrContext::getMaxSampleCount() const { |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 566 | return fGpu->caps()->maxSampleCount(); |
bsalomon@google.com | 8a70eef | 2013-03-19 13:58:55 +0000 | [diff] [blame] | 567 | } |
| 568 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 569 | /////////////////////////////////////////////////////////////////////////////// |
| 570 | |
bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 571 | GrTexture* GrContext::wrapBackendTexture(const GrBackendTextureDesc& desc) { |
| 572 | return fGpu->wrapBackendTexture(desc); |
bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 573 | } |
| 574 | |
bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 575 | GrRenderTarget* GrContext::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) { |
| 576 | return fGpu->wrapBackendRenderTarget(desc); |
bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 577 | } |
| 578 | |
bsalomon@google.com | 5877ffd | 2011-04-11 17:58:48 +0000 | [diff] [blame] | 579 | /////////////////////////////////////////////////////////////////////////////// |
| 580 | |
bsalomon@google.com | b867099 | 2012-07-25 21:27:09 +0000 | [diff] [blame] | 581 | bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params, |
bsalomon@google.com | 1f221a7 | 2011-08-23 20:54:07 +0000 | [diff] [blame] | 582 | int width, int height) const { |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 583 | const GrDrawTargetCaps* caps = fGpu->caps(); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 584 | if (!caps->eightBitPaletteSupport()) { |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 585 | return false; |
| 586 | } |
| 587 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 588 | bool isPow2 = GrIsPow2(width) && GrIsPow2(height); |
| 589 | |
| 590 | if (!isPow2) { |
bsalomon@google.com | b867099 | 2012-07-25 21:27:09 +0000 | [diff] [blame] | 591 | bool tiled = NULL != params && params->isTiled(); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 592 | if (tiled && !caps->npotTextureTileSupport()) { |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 593 | return false; |
| 594 | } |
| 595 | } |
| 596 | return true; |
| 597 | } |
| 598 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 599 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 600 | //////////////////////////////////////////////////////////////////////////////// |
| 601 | |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 602 | void GrContext::clear(const GrIRect* rect, |
| 603 | const GrColor color, |
robertphillips@google.com | c82a8b7 | 2012-06-21 20:15:48 +0000 | [diff] [blame] | 604 | GrRenderTarget* target) { |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 605 | this->prepareToDraw(NULL, BUFFERED_DRAW)->clear(rect, color, target); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 606 | } |
| 607 | |
bsalomon@google.com | 5dc26b9 | 2012-10-11 19:32:32 +0000 | [diff] [blame] | 608 | void GrContext::drawPaint(const GrPaint& origPaint) { |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 609 | // set rect to be big enough to fill the space, but not super-huge, so we |
| 610 | // don't overflow fixed-point implementations |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 611 | GrRect r; |
| 612 | r.setLTRB(0, 0, |
bsalomon@google.com | 8171288 | 2012-11-01 17:12:34 +0000 | [diff] [blame] | 613 | SkIntToScalar(getRenderTarget()->width()), |
| 614 | SkIntToScalar(getRenderTarget()->height())); |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 615 | SkMatrix inverse; |
bsalomon@google.com | 5dc26b9 | 2012-10-11 19:32:32 +0000 | [diff] [blame] | 616 | SkTCopyOnFirstWrite<GrPaint> paint(origPaint); |
robertphillips@google.com | fea85ac | 2012-07-11 18:53:23 +0000 | [diff] [blame] | 617 | AutoMatrix am; |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 618 | |
bsalomon@google.com | 4f83be8 | 2011-09-12 13:52:51 +0000 | [diff] [blame] | 619 | // We attempt to map r by the inverse matrix and draw that. mapRect will |
| 620 | // map the four corners and bound them with a new rect. This will not |
| 621 | // produce a correct result for some perspective matrices. |
bsalomon@google.com | 8c2fe99 | 2011-09-13 15:27:18 +0000 | [diff] [blame] | 622 | if (!this->getMatrix().hasPerspective()) { |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 623 | if (!fViewMatrix.invert(&inverse)) { |
bsalomon@google.com | e3d3216 | 2012-07-20 13:37:06 +0000 | [diff] [blame] | 624 | GrPrintf("Could not invert matrix\n"); |
bsalomon@google.com | 8c2fe99 | 2011-09-13 15:27:18 +0000 | [diff] [blame] | 625 | return; |
| 626 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 627 | inverse.mapRect(&r); |
| 628 | } else { |
bsalomon@google.com | 3cbaa2d | 2012-10-12 14:51:52 +0000 | [diff] [blame] | 629 | if (!am.setIdentity(this, paint.writable())) { |
| 630 | GrPrintf("Could not invert matrix\n"); |
| 631 | return; |
bsalomon@google.com | 8c2fe99 | 2011-09-13 15:27:18 +0000 | [diff] [blame] | 632 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 633 | } |
bsalomon@google.com | 4f83be8 | 2011-09-12 13:52:51 +0000 | [diff] [blame] | 634 | // by definition this fills the entire clip, no need for AA |
bsalomon@google.com | 5dc26b9 | 2012-10-11 19:32:32 +0000 | [diff] [blame] | 635 | if (paint->isAntiAlias()) { |
| 636 | paint.writable()->setAntiAlias(false); |
bsalomon@google.com | 4f83be8 | 2011-09-12 13:52:51 +0000 | [diff] [blame] | 637 | } |
bsalomon@google.com | 5dc26b9 | 2012-10-11 19:32:32 +0000 | [diff] [blame] | 638 | this->drawRect(*paint, r); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 639 | } |
| 640 | |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 641 | //////////////////////////////////////////////////////////////////////////////// |
| 642 | |
bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 643 | namespace { |
| 644 | inline bool disable_coverage_aa_for_blend(GrDrawTarget* target) { |
| 645 | return DISABLE_COVERAGE_AA_FOR_BLEND && !target->canApplyCoverage(); |
| 646 | } |
| 647 | } |
| 648 | |
bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 649 | //////////////////////////////////////////////////////////////////////////////// |
| 650 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 651 | /* create a triangle strip that strokes the specified triangle. There are 8 |
| 652 | unique vertices, but we repreat the last 2 to close up. Alternatively we |
| 653 | could use an indices array, and then only send 8 verts, but not sure that |
| 654 | would be faster. |
| 655 | */ |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 656 | static void setStrokeRectStrip(GrPoint verts[10], GrRect rect, |
bsalomon@google.com | 8171288 | 2012-11-01 17:12:34 +0000 | [diff] [blame] | 657 | SkScalar width) { |
| 658 | const SkScalar rad = SkScalarHalf(width); |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 659 | rect.sort(); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 660 | |
| 661 | verts[0].set(rect.fLeft + rad, rect.fTop + rad); |
| 662 | verts[1].set(rect.fLeft - rad, rect.fTop - rad); |
| 663 | verts[2].set(rect.fRight - rad, rect.fTop + rad); |
| 664 | verts[3].set(rect.fRight + rad, rect.fTop - rad); |
| 665 | verts[4].set(rect.fRight - rad, rect.fBottom - rad); |
| 666 | verts[5].set(rect.fRight + rad, rect.fBottom + rad); |
| 667 | verts[6].set(rect.fLeft + rad, rect.fBottom - rad); |
| 668 | verts[7].set(rect.fLeft - rad, rect.fBottom + rad); |
| 669 | verts[8] = verts[0]; |
| 670 | verts[9] = verts[1]; |
| 671 | } |
| 672 | |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 673 | static bool isIRect(const GrRect& r) { |
skia.committer@gmail.com | eafdf12 | 2013-05-15 07:01:09 +0000 | [diff] [blame] | 674 | return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) && |
| 675 | SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom); |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 676 | } |
| 677 | |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 678 | static bool apply_aa_to_rect(GrDrawTarget* target, |
robertphillips@google.com | 28ac96e | 2013-05-13 13:38:35 +0000 | [diff] [blame] | 679 | const GrRect& rect, |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 680 | SkScalar strokeWidth, |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 681 | const SkMatrix* matrix, |
| 682 | SkMatrix* combinedMatrix, |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 683 | GrRect* devRect, |
bsalomon@google.com | a310826 | 2011-10-10 14:08:47 +0000 | [diff] [blame] | 684 | bool* useVertexCoverage) { |
bsalomon@google.com | 2eba795 | 2012-01-12 13:47:37 +0000 | [diff] [blame] | 685 | // we use a simple coverage ramp to do aa on axis-aligned rects |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 686 | // we check if the rect will be axis-aligned, and the rect won't land on |
bsalomon@google.com | 2eba795 | 2012-01-12 13:47:37 +0000 | [diff] [blame] | 687 | // integer coords. |
bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 688 | |
bsalomon@google.com | a310826 | 2011-10-10 14:08:47 +0000 | [diff] [blame] | 689 | // we are keeping around the "tweak the alpha" trick because |
| 690 | // it is our only hope for the fixed-pipe implementation. |
| 691 | // In a shader implementation we can give a separate coverage input |
bsalomon@google.com | 289533a | 2011-10-27 12:34:25 +0000 | [diff] [blame] | 692 | // TODO: remove this ugliness when we drop the fixed-pipe impl |
bsalomon@google.com | a310826 | 2011-10-10 14:08:47 +0000 | [diff] [blame] | 693 | *useVertexCoverage = false; |
bsalomon@google.com | 2b44673 | 2013-02-12 16:47:41 +0000 | [diff] [blame] | 694 | if (!target->getDrawState().canTweakAlphaForCoverage()) { |
bsalomon@google.com | 2eba795 | 2012-01-12 13:47:37 +0000 | [diff] [blame] | 695 | if (disable_coverage_aa_for_blend(target)) { |
bsalomon@google.com | 1983f39 | 2011-10-10 15:17:58 +0000 | [diff] [blame] | 696 | #if GR_DEBUG |
bsalomon@google.com | 2eba795 | 2012-01-12 13:47:37 +0000 | [diff] [blame] | 697 | //GrPrintf("Turning off AA to correctly apply blend.\n"); |
bsalomon@google.com | 1983f39 | 2011-10-10 15:17:58 +0000 | [diff] [blame] | 698 | #endif |
bsalomon@google.com | a310826 | 2011-10-10 14:08:47 +0000 | [diff] [blame] | 699 | return false; |
bsalomon@google.com | 2eba795 | 2012-01-12 13:47:37 +0000 | [diff] [blame] | 700 | } else { |
| 701 | *useVertexCoverage = true; |
bsalomon@google.com | a310826 | 2011-10-10 14:08:47 +0000 | [diff] [blame] | 702 | } |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 703 | } |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 704 | const GrDrawState& drawState = target->getDrawState(); |
| 705 | if (drawState.getRenderTarget()->isMultisampled()) { |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 706 | return false; |
| 707 | } |
| 708 | |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 709 | if (0 == strokeWidth && target->willUseHWAALines()) { |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 710 | return false; |
| 711 | } |
| 712 | |
robertphillips@google.com | 4b140b5 | 2013-05-02 17:13:13 +0000 | [diff] [blame] | 713 | #if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT) |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 714 | if (strokeWidth >= 0) { |
| 715 | #endif |
| 716 | if (!drawState.getViewMatrix().preservesAxisAlignment()) { |
| 717 | return false; |
| 718 | } |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 719 | |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 720 | if (NULL != matrix && !matrix->preservesAxisAlignment()) { |
| 721 | return false; |
| 722 | } |
robertphillips@google.com | 4b140b5 | 2013-05-02 17:13:13 +0000 | [diff] [blame] | 723 | #if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT) |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 724 | } else { |
| 725 | if (!drawState.getViewMatrix().preservesAxisAlignment() && |
| 726 | !drawState.getViewMatrix().preservesRightAngles()) { |
| 727 | return false; |
| 728 | } |
| 729 | |
| 730 | if (NULL != matrix && !matrix->preservesRightAngles()) { |
| 731 | return false; |
| 732 | } |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 733 | } |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 734 | #endif |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 735 | |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 736 | *combinedMatrix = drawState.getViewMatrix(); |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 737 | if (NULL != matrix) { |
| 738 | combinedMatrix->preConcat(*matrix); |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 739 | |
| 740 | #if GR_DEBUG |
robertphillips@google.com | 4b140b5 | 2013-05-02 17:13:13 +0000 | [diff] [blame] | 741 | #if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT) |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 742 | if (strokeWidth >= 0) { |
| 743 | #endif |
| 744 | GrAssert(combinedMatrix->preservesAxisAlignment()); |
robertphillips@google.com | 4b140b5 | 2013-05-02 17:13:13 +0000 | [diff] [blame] | 745 | #if defined(SHADER_AA_FILL_RECT) || !defined(IGNORE_ROT_AA_RECT_OPT) |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 746 | } else { |
| 747 | GrAssert(combinedMatrix->preservesRightAngles()); |
| 748 | } |
| 749 | #endif |
| 750 | #endif |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 751 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 752 | |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 753 | combinedMatrix->mapRect(devRect, rect); |
robertphillips@google.com | 28ac96e | 2013-05-13 13:38:35 +0000 | [diff] [blame] | 754 | |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 755 | if (strokeWidth < 0) { |
| 756 | return !isIRect(*devRect); |
| 757 | } else { |
| 758 | return true; |
| 759 | } |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 760 | } |
| 761 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 762 | void GrContext::drawRect(const GrPaint& paint, |
| 763 | const GrRect& rect, |
bsalomon@google.com | 8171288 | 2012-11-01 17:12:34 +0000 | [diff] [blame] | 764 | SkScalar width, |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 765 | const SkMatrix* matrix) { |
tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 766 | SK_TRACE_EVENT0("GrContext::drawRect"); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 767 | |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 768 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW); |
tomhudson@google.com | 7d6afdd | 2012-06-22 20:10:50 +0000 | [diff] [blame] | 769 | GrDrawState::AutoStageDisable atr(fDrawState); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 770 | |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 771 | GrRect devRect; |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 772 | SkMatrix combinedMatrix; |
bsalomon@google.com | a310826 | 2011-10-10 14:08:47 +0000 | [diff] [blame] | 773 | bool useVertexCoverage; |
bsalomon@google.com | c7448ce | 2012-10-05 19:04:13 +0000 | [diff] [blame] | 774 | bool needAA = paint.isAntiAlias() && |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 775 | !target->getDrawState().getRenderTarget()->isMultisampled(); |
robertphillips@google.com | 28ac96e | 2013-05-13 13:38:35 +0000 | [diff] [blame] | 776 | bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix, |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 777 | &combinedMatrix, &devRect, |
bsalomon@google.com | 289533a | 2011-10-27 12:34:25 +0000 | [diff] [blame] | 778 | &useVertexCoverage); |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 779 | if (doAA) { |
bsalomon@google.com | 5b3e890 | 2012-10-05 20:13:28 +0000 | [diff] [blame] | 780 | GrDrawState::AutoDeviceCoordDraw adcd(target->drawState()); |
bsalomon@google.com | e3d3216 | 2012-07-20 13:37:06 +0000 | [diff] [blame] | 781 | if (!adcd.succeeded()) { |
| 782 | return; |
| 783 | } |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 784 | if (width >= 0) { |
robertphillips@google.com | 18136d1 | 2013-05-10 11:05:58 +0000 | [diff] [blame] | 785 | fAARectRenderer->strokeAARect(this->getGpu(), target, |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 786 | rect, combinedMatrix, devRect, |
robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 787 | width, useVertexCoverage); |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 788 | } else { |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 789 | // filled AA rect |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 790 | fAARectRenderer->fillAARect(this->getGpu(), target, |
robertphillips@google.com | afd1cba | 2013-05-14 19:47:47 +0000 | [diff] [blame] | 791 | rect, combinedMatrix, devRect, |
robertphillips@google.com | b19cb7f | 2013-05-02 15:37:20 +0000 | [diff] [blame] | 792 | useVertexCoverage); |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 793 | } |
| 794 | return; |
| 795 | } |
| 796 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 797 | if (width >= 0) { |
| 798 | // TODO: consider making static vertex buffers for these cases. |
bsalomon@google.com | 6438695 | 2013-02-08 21:22:44 +0000 | [diff] [blame] | 799 | // Hairline could be done by just adding closing vertex to |
| 800 | // unitSquareVertexBuffer() |
bsalomon@google.com | 26c2d0a | 2011-05-17 20:15:30 +0000 | [diff] [blame] | 801 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 802 | static const int worstCaseVertCount = 10; |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 803 | target->drawState()->setDefaultVertexAttribs(); |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 804 | GrDrawTarget::AutoReleaseGeometry geo(target, worstCaseVertCount, 0); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 805 | |
| 806 | if (!geo.succeeded()) { |
bsalomon@google.com | 6513cd0 | 2011-08-05 20:12:30 +0000 | [diff] [blame] | 807 | GrPrintf("Failed to get space for vertices!\n"); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 808 | return; |
| 809 | } |
| 810 | |
| 811 | GrPrimitiveType primType; |
| 812 | int vertCount; |
| 813 | GrPoint* vertex = geo.positions(); |
| 814 | |
| 815 | if (width > 0) { |
| 816 | vertCount = 10; |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 817 | primType = kTriangleStrip_GrPrimitiveType; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 818 | setStrokeRectStrip(vertex, rect, width); |
| 819 | } else { |
| 820 | // hairline |
| 821 | vertCount = 5; |
bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 822 | primType = kLineStrip_GrPrimitiveType; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 823 | vertex[0].set(rect.fLeft, rect.fTop); |
| 824 | vertex[1].set(rect.fRight, rect.fTop); |
| 825 | vertex[2].set(rect.fRight, rect.fBottom); |
| 826 | vertex[3].set(rect.fLeft, rect.fBottom); |
| 827 | vertex[4].set(rect.fLeft, rect.fTop); |
| 828 | } |
| 829 | |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 830 | GrDrawState::AutoViewMatrixRestore avmr; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 831 | if (NULL != matrix) { |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 832 | GrDrawState* drawState = target->drawState(); |
bsalomon@google.com | 2fdcdeb | 2012-10-08 17:15:55 +0000 | [diff] [blame] | 833 | avmr.set(drawState, *matrix); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | target->drawNonIndexed(primType, 0, vertCount); |
| 837 | } else { |
robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 838 | // filled BW rect |
robertphillips@google.com | 235ef3d | 2013-04-20 12:10:26 +0000 | [diff] [blame] | 839 | target->drawSimpleRect(rect, matrix); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 840 | } |
| 841 | } |
| 842 | |
| 843 | void GrContext::drawRectToRect(const GrPaint& paint, |
| 844 | const GrRect& dstRect, |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 845 | const GrRect& localRect, |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 846 | const SkMatrix* dstMatrix, |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 847 | const SkMatrix* localMatrix) { |
tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 848 | SK_TRACE_EVENT0("GrContext::drawRectToRect"); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 849 | |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 850 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW); |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 851 | GrDrawState::AutoStageDisable atr(fDrawState); |
bsalomon@google.com | 6438695 | 2013-02-08 21:22:44 +0000 | [diff] [blame] | 852 | |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 853 | target->drawRect(dstRect, dstMatrix, &localRect, localMatrix); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 854 | } |
| 855 | |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 856 | namespace { |
| 857 | |
| 858 | extern const GrVertexAttrib gPosUVColorAttribs[] = { |
| 859 | {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding }, |
| 860 | {kVec2f_GrVertexAttribType, sizeof(GrPoint), kLocalCoord_GrVertexAttribBinding }, |
rmistry@google.com | c9f3b38 | 2013-04-22 12:45:30 +0000 | [diff] [blame] | 861 | {kVec4ub_GrVertexAttribType, 2*sizeof(GrPoint), kColor_GrVertexAttribBinding} |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 862 | }; |
| 863 | |
| 864 | extern const GrVertexAttrib gPosColorAttribs[] = { |
| 865 | {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding}, |
| 866 | {kVec4ub_GrVertexAttribType, sizeof(GrPoint), kColor_GrVertexAttribBinding}, |
| 867 | }; |
| 868 | |
| 869 | static void set_vertex_attributes(GrDrawState* drawState, |
| 870 | const GrPoint* texCoords, |
| 871 | const GrColor* colors, |
| 872 | int* colorOffset, |
| 873 | int* texOffset) { |
| 874 | *texOffset = -1; |
| 875 | *colorOffset = -1; |
| 876 | |
| 877 | if (NULL != texCoords && NULL != colors) { |
| 878 | *texOffset = sizeof(GrPoint); |
| 879 | *colorOffset = 2*sizeof(GrPoint); |
| 880 | drawState->setVertexAttribs<gPosUVColorAttribs>(3); |
| 881 | } else if (NULL != texCoords) { |
| 882 | *texOffset = sizeof(GrPoint); |
| 883 | drawState->setVertexAttribs<gPosUVColorAttribs>(2); |
| 884 | } else if (NULL != colors) { |
| 885 | *colorOffset = sizeof(GrPoint); |
| 886 | drawState->setVertexAttribs<gPosColorAttribs>(2); |
| 887 | } else { |
| 888 | drawState->setVertexAttribs<gPosColorAttribs>(1); |
| 889 | } |
| 890 | } |
| 891 | |
| 892 | }; |
| 893 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 894 | void GrContext::drawVertices(const GrPaint& paint, |
| 895 | GrPrimitiveType primitiveType, |
| 896 | int vertexCount, |
| 897 | const GrPoint positions[], |
| 898 | const GrPoint texCoords[], |
| 899 | const GrColor colors[], |
| 900 | const uint16_t indices[], |
| 901 | int indexCount) { |
tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 902 | SK_TRACE_EVENT0("GrContext::drawVertices"); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 903 | |
| 904 | GrDrawTarget::AutoReleaseGeometry geo; |
| 905 | |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 906 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW); |
tomhudson@google.com | 7d6afdd | 2012-06-22 20:10:50 +0000 | [diff] [blame] | 907 | GrDrawState::AutoStageDisable atr(fDrawState); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 908 | |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 909 | GrDrawState* drawState = target->drawState(); |
jvanverth@google.com | b8b705b | 2013-02-28 16:28:34 +0000 | [diff] [blame] | 910 | |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 911 | int colorOffset = -1, texOffset = -1; |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 912 | set_vertex_attributes(drawState, texCoords, colors, &colorOffset, &texOffset); |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 913 | |
| 914 | size_t vertexSize = drawState->getVertexSize(); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 915 | if (sizeof(GrPoint) != vertexSize) { |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 916 | if (!geo.set(target, vertexCount, 0)) { |
bsalomon@google.com | 6513cd0 | 2011-08-05 20:12:30 +0000 | [diff] [blame] | 917 | GrPrintf("Failed to get space for vertices!\n"); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 918 | return; |
| 919 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 920 | void* curVertex = geo.vertices(); |
| 921 | |
| 922 | for (int i = 0; i < vertexCount; ++i) { |
| 923 | *((GrPoint*)curVertex) = positions[i]; |
| 924 | |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 925 | if (texOffset >= 0) { |
jvanverth@google.com | 3976825 | 2013-02-14 15:25:44 +0000 | [diff] [blame] | 926 | *(GrPoint*)((intptr_t)curVertex + texOffset) = texCoords[i]; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 927 | } |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 928 | if (colorOffset >= 0) { |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 929 | *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i]; |
| 930 | } |
bsalomon@google.com | 26c2d0a | 2011-05-17 20:15:30 +0000 | [diff] [blame] | 931 | curVertex = (void*)((intptr_t)curVertex + vertexSize); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 932 | } |
| 933 | } else { |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 934 | target->setVertexSourceToArray(positions, vertexCount); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 935 | } |
| 936 | |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 937 | // we don't currently apply offscreen AA to this path. Need improved |
bsalomon@google.com | 9195836 | 2011-06-13 17:58:13 +0000 | [diff] [blame] | 938 | // management of GrDrawTarget's geometry to avoid copying points per-tile. |
bsalomon@google.com | a47a48d | 2011-04-26 20:22:11 +0000 | [diff] [blame] | 939 | |
bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 940 | if (NULL != indices) { |
bsalomon@google.com | 9195836 | 2011-06-13 17:58:13 +0000 | [diff] [blame] | 941 | target->setIndexSourceToArray(indices, indexCount); |
bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 942 | target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount); |
bsalomon@google.com | 0406b9e | 2013-04-02 21:00:15 +0000 | [diff] [blame] | 943 | target->resetIndexSource(); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 944 | } else { |
bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 945 | target->drawNonIndexed(primitiveType, 0, vertexCount); |
| 946 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 947 | } |
| 948 | |
bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 949 | /////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 93c9660 | 2012-04-27 13:05:21 +0000 | [diff] [blame] | 950 | |
commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 951 | void GrContext::drawRRect(const GrPaint& paint, |
| 952 | const SkRRect& rect, |
| 953 | const SkStrokeRec& stroke) { |
| 954 | |
| 955 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW); |
| 956 | GrDrawState::AutoStageDisable atr(fDrawState); |
| 957 | |
bsalomon@google.com | d09ab84 | 2013-05-15 17:30:26 +0000 | [diff] [blame] | 958 | bool useAA = paint.isAntiAlias() && |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 959 | !target->getDrawState().getRenderTarget()->isMultisampled() && |
bsalomon@google.com | d09ab84 | 2013-05-15 17:30:26 +0000 | [diff] [blame] | 960 | !disable_coverage_aa_for_blend(target); |
commit-bot@chromium.org | 37d883d | 2013-05-02 13:11:22 +0000 | [diff] [blame] | 961 | |
bsalomon@google.com | d09ab84 | 2013-05-15 17:30:26 +0000 | [diff] [blame] | 962 | if (!fOvalRenderer->drawSimpleRRect(target, this, useAA, rect, stroke)) { |
commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 963 | SkPath path; |
| 964 | path.addRRect(rect); |
bsalomon@google.com | d09ab84 | 2013-05-15 17:30:26 +0000 | [diff] [blame] | 965 | this->internalDrawPath(target, useAA, path, stroke); |
commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 966 | } |
| 967 | } |
| 968 | |
| 969 | /////////////////////////////////////////////////////////////////////////////// |
| 970 | |
bsalomon@google.com | 93c9660 | 2012-04-27 13:05:21 +0000 | [diff] [blame] | 971 | void GrContext::drawOval(const GrPaint& paint, |
jvanverth@google.com | 46d3d39 | 2013-01-22 13:34:01 +0000 | [diff] [blame] | 972 | const GrRect& oval, |
| 973 | const SkStrokeRec& stroke) { |
| 974 | |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 975 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW); |
| 976 | GrDrawState::AutoStageDisable atr(fDrawState); |
| 977 | |
bsalomon@google.com | d09ab84 | 2013-05-15 17:30:26 +0000 | [diff] [blame] | 978 | bool useAA = paint.isAntiAlias() && |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 979 | !target->getDrawState().getRenderTarget()->isMultisampled() && |
bsalomon@google.com | d09ab84 | 2013-05-15 17:30:26 +0000 | [diff] [blame] | 980 | !disable_coverage_aa_for_blend(target); |
commit-bot@chromium.org | 37d883d | 2013-05-02 13:11:22 +0000 | [diff] [blame] | 981 | |
| 982 | if (!fOvalRenderer->drawOval(target, this, useAA, oval, stroke)) { |
bsalomon@google.com | 93c9660 | 2012-04-27 13:05:21 +0000 | [diff] [blame] | 983 | SkPath path; |
jvanverth@google.com | 46d3d39 | 2013-01-22 13:34:01 +0000 | [diff] [blame] | 984 | path.addOval(oval); |
commit-bot@chromium.org | 37d883d | 2013-05-02 13:11:22 +0000 | [diff] [blame] | 985 | this->internalDrawPath(target, useAA, path, stroke); |
skia.committer@gmail.com | 98ded84 | 2013-01-23 07:06:17 +0000 | [diff] [blame] | 986 | } |
bsalomon@google.com | 150d284 | 2012-01-12 20:19:56 +0000 | [diff] [blame] | 987 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 988 | |
robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 989 | namespace { |
| 990 | |
| 991 | // Can 'path' be drawn as a pair of filled nested rectangles? |
| 992 | static bool is_nested_rects(GrDrawTarget* target, |
| 993 | const SkPath& path, |
| 994 | const SkStrokeRec& stroke, |
| 995 | SkRect rects[2], |
| 996 | bool* useVertexCoverage) { |
| 997 | SkASSERT(stroke.isFillStyle()); |
| 998 | |
| 999 | if (path.isInverseFillType()) { |
| 1000 | return false; |
| 1001 | } |
| 1002 | |
| 1003 | const GrDrawState& drawState = target->getDrawState(); |
| 1004 | |
| 1005 | // TODO: this restriction could be lifted if we were willing to apply |
| 1006 | // the matrix to all the points individually rather than just to the rect |
| 1007 | if (!drawState.getViewMatrix().preservesAxisAlignment()) { |
| 1008 | return false; |
| 1009 | } |
| 1010 | |
| 1011 | *useVertexCoverage = false; |
| 1012 | if (!target->getDrawState().canTweakAlphaForCoverage()) { |
| 1013 | if (disable_coverage_aa_for_blend(target)) { |
| 1014 | return false; |
| 1015 | } else { |
| 1016 | *useVertexCoverage = true; |
| 1017 | } |
| 1018 | } |
| 1019 | |
| 1020 | SkPath::Direction dirs[2]; |
| 1021 | if (!path.isNestedRects(rects, dirs)) { |
| 1022 | return false; |
| 1023 | } |
| 1024 | |
| 1025 | if (SkPath::kWinding_FillType == path.getFillType()) { |
| 1026 | // The two rects need to be wound opposite to each other |
| 1027 | return dirs[0] != dirs[1]; |
| 1028 | } else { |
| 1029 | return true; |
| 1030 | } |
| 1031 | } |
| 1032 | |
| 1033 | }; |
| 1034 | |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 1035 | void GrContext::drawPath(const GrPaint& paint, const SkPath& path, const SkStrokeRec& stroke) { |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1036 | |
bsalomon@google.com | fa6ac93 | 2011-10-05 19:57:55 +0000 | [diff] [blame] | 1037 | if (path.isEmpty()) { |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 1038 | if (path.isInverseFillType()) { |
bsalomon@google.com | fa6ac93 | 2011-10-05 19:57:55 +0000 | [diff] [blame] | 1039 | this->drawPaint(paint); |
| 1040 | } |
| 1041 | return; |
| 1042 | } |
| 1043 | |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1044 | // Note that internalDrawPath may sw-rasterize the path into a scratch texture. |
bsalomon@google.com | fb4ce6f | 2012-03-14 13:27:54 +0000 | [diff] [blame] | 1045 | // Scratch textures can be recycled after they are returned to the texture |
| 1046 | // cache. This presents a potential hazard for buffered drawing. However, |
| 1047 | // the writePixels that uploads to the scratch will perform a flush so we're |
| 1048 | // OK. |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 1049 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW); |
tomhudson@google.com | 7d6afdd | 2012-06-22 20:10:50 +0000 | [diff] [blame] | 1050 | GrDrawState::AutoStageDisable atr(fDrawState); |
bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 1051 | |
robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1052 | bool useAA = paint.isAntiAlias() && !this->getRenderTarget()->isMultisampled(); |
| 1053 | if (useAA && stroke.getWidth() < 0 && !path.isConvex()) { |
| 1054 | // Concave AA paths are expensive - try to avoid them for special cases |
| 1055 | bool useVertexCoverage; |
| 1056 | SkRect rects[2]; |
| 1057 | |
| 1058 | if (is_nested_rects(target, path, stroke, rects, &useVertexCoverage)) { |
| 1059 | GrDrawState::AutoDeviceCoordDraw adcd(target->drawState()); |
| 1060 | if (!adcd.succeeded()) { |
| 1061 | return; |
| 1062 | } |
| 1063 | |
| 1064 | fAARectRenderer->fillAANestedRects(this->getGpu(), target, |
| 1065 | rects, |
| 1066 | adcd.getOriginalMatrix(), |
| 1067 | useVertexCoverage); |
| 1068 | return; |
| 1069 | } |
| 1070 | } |
| 1071 | |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1072 | SkRect ovalRect; |
| 1073 | bool isOval = path.isOval(&ovalRect); |
| 1074 | |
skia.committer@gmail.com | 7e32851 | 2013-03-23 07:01:28 +0000 | [diff] [blame] | 1075 | if (!isOval || path.isInverseFillType() |
commit-bot@chromium.org | 37d883d | 2013-05-02 13:11:22 +0000 | [diff] [blame] | 1076 | || !fOvalRenderer->drawOval(target, this, useAA, ovalRect, stroke)) { |
| 1077 | this->internalDrawPath(target, useAA, path, stroke); |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1078 | } |
| 1079 | } |
| 1080 | |
commit-bot@chromium.org | 37d883d | 2013-05-02 13:11:22 +0000 | [diff] [blame] | 1081 | void GrContext::internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path, |
commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1082 | const SkStrokeRec& stroke) { |
| 1083 | |
bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 1084 | // An Assumption here is that path renderer would use some form of tweaking |
| 1085 | // the src color (either the input alpha or in the frag shader) to implement |
| 1086 | // aa. If we have some future driver-mojo path AA that can do the right |
| 1087 | // thing WRT to the blend then we'll need some query on the PR. |
| 1088 | if (disable_coverage_aa_for_blend(target)) { |
bsalomon@google.com | 1983f39 | 2011-10-10 15:17:58 +0000 | [diff] [blame] | 1089 | #if GR_DEBUG |
bsalomon@google.com | 979432b | 2011-11-05 21:38:22 +0000 | [diff] [blame] | 1090 | //GrPrintf("Turning off AA to correctly apply blend.\n"); |
bsalomon@google.com | 1983f39 | 2011-10-10 15:17:58 +0000 | [diff] [blame] | 1091 | #endif |
commit-bot@chromium.org | 37d883d | 2013-05-02 13:11:22 +0000 | [diff] [blame] | 1092 | useAA = false; |
bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 1093 | } |
bsalomon@google.com | 289533a | 2011-10-27 12:34:25 +0000 | [diff] [blame] | 1094 | |
commit-bot@chromium.org | 37d883d | 2013-05-02 13:11:22 +0000 | [diff] [blame] | 1095 | GrPathRendererChain::DrawType type = useAA ? GrPathRendererChain::kColorAntiAlias_DrawType : |
| 1096 | GrPathRendererChain::kColor_DrawType; |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 1097 | |
robertphillips@google.com | eb928ea | 2013-01-08 13:45:09 +0000 | [diff] [blame] | 1098 | const SkPath* pathPtr = &path; |
| 1099 | SkPath tmpPath; |
| 1100 | SkStrokeRec strokeRec(stroke); |
| 1101 | |
| 1102 | // Try a 1st time without stroking the path and without allowing the SW renderer |
| 1103 | GrPathRenderer* pr = this->getPathRenderer(*pathPtr, strokeRec, target, false, type); |
| 1104 | |
| 1105 | if (NULL == pr) { |
| 1106 | if (!strokeRec.isHairlineStyle()) { |
| 1107 | // It didn't work the 1st time, so try again with the stroked path |
| 1108 | if (strokeRec.applyToPath(&tmpPath, *pathPtr)) { |
| 1109 | pathPtr = &tmpPath; |
| 1110 | strokeRec.setFillStyle(); |
| 1111 | } |
| 1112 | } |
| 1113 | // This time, allow SW renderer |
| 1114 | pr = this->getPathRenderer(*pathPtr, strokeRec, target, true, type); |
| 1115 | } |
| 1116 | |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1117 | if (NULL == pr) { |
bsalomon@google.com | 1983f39 | 2011-10-10 15:17:58 +0000 | [diff] [blame] | 1118 | #if GR_DEBUG |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1119 | GrPrintf("Unable to find path renderer compatible with path.\n"); |
bsalomon@google.com | 1983f39 | 2011-10-10 15:17:58 +0000 | [diff] [blame] | 1120 | #endif |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1121 | return; |
| 1122 | } |
| 1123 | |
commit-bot@chromium.org | 37d883d | 2013-05-02 13:11:22 +0000 | [diff] [blame] | 1124 | pr->drawPath(*pathPtr, strokeRec, target, useAA); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1125 | } |
bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 1126 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1127 | //////////////////////////////////////////////////////////////////////////////// |
| 1128 | |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 1129 | void GrContext::flush(int flagsBitfield) { |
| 1130 | if (kDiscard_FlushBit & flagsBitfield) { |
| 1131 | fDrawBuffer->reset(); |
| 1132 | } else { |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1133 | this->flushDrawBuffer(); |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 1134 | } |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1135 | // TODO: Remove this flag |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 1136 | if (kForceCurrentRenderTarget_FlushBit & flagsBitfield) { |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1137 | fGpu->drawState()->setRenderTarget(this->getRenderTarget()); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1138 | fGpu->forceRenderTargetFlush(); |
| 1139 | } |
| 1140 | } |
| 1141 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1142 | void GrContext::flushDrawBuffer() { |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 1143 | if (NULL != fDrawBuffer && !fDrawBuffer->isFlushing()) { |
| 1144 | fDrawBuffer->flush(); |
junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 1145 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1146 | } |
| 1147 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1148 | bool GrContext::writeTexturePixels(GrTexture* texture, |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1149 | int left, int top, int width, int height, |
| 1150 | GrPixelConfig config, const void* buffer, size_t rowBytes, |
| 1151 | uint32_t flags) { |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1152 | SK_TRACE_EVENT0("GrContext::writeTexturePixels"); |
bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1153 | ASSERT_OWNED_RESOURCE(texture); |
| 1154 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1155 | if ((kUnpremul_PixelOpsFlag & flags) || !fGpu->canWriteTexturePixels(texture, config)) { |
| 1156 | if (NULL != texture->asRenderTarget()) { |
| 1157 | return this->writeRenderTargetPixels(texture->asRenderTarget(), |
| 1158 | left, top, width, height, |
| 1159 | config, buffer, rowBytes, flags); |
| 1160 | } else { |
| 1161 | return false; |
| 1162 | } |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1163 | } |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1164 | |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1165 | if (!(kDontFlush_PixelOpsFlag & flags)) { |
| 1166 | this->flush(); |
| 1167 | } |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1168 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1169 | return fGpu->writeTexturePixels(texture, left, top, width, height, |
| 1170 | config, buffer, rowBytes); |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1171 | } |
| 1172 | |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1173 | bool GrContext::readTexturePixels(GrTexture* texture, |
| 1174 | int left, int top, int width, int height, |
| 1175 | GrPixelConfig config, void* buffer, size_t rowBytes, |
| 1176 | uint32_t flags) { |
tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 1177 | SK_TRACE_EVENT0("GrContext::readTexturePixels"); |
bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1178 | ASSERT_OWNED_RESOURCE(texture); |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1179 | |
bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 1180 | // TODO: code read pixels for textures that aren't also rendertargets |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1181 | GrRenderTarget* target = texture->asRenderTarget(); |
| 1182 | if (NULL != target) { |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1183 | return this->readRenderTargetPixels(target, |
| 1184 | left, top, width, height, |
| 1185 | config, buffer, rowBytes, |
| 1186 | flags); |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1187 | } else { |
| 1188 | return false; |
| 1189 | } |
| 1190 | } |
| 1191 | |
bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 1192 | #include "SkConfig8888.h" |
| 1193 | |
| 1194 | namespace { |
| 1195 | /** |
| 1196 | * Converts a GrPixelConfig to a SkCanvas::Config8888. Only byte-per-channel |
| 1197 | * formats are representable as Config8888 and so the function returns false |
| 1198 | * if the GrPixelConfig has no equivalent Config8888. |
| 1199 | */ |
| 1200 | bool grconfig_to_config8888(GrPixelConfig config, |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1201 | bool unpremul, |
bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 1202 | SkCanvas::Config8888* config8888) { |
| 1203 | switch (config) { |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1204 | case kRGBA_8888_GrPixelConfig: |
| 1205 | if (unpremul) { |
| 1206 | *config8888 = SkCanvas::kRGBA_Unpremul_Config8888; |
| 1207 | } else { |
| 1208 | *config8888 = SkCanvas::kRGBA_Premul_Config8888; |
| 1209 | } |
bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 1210 | return true; |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1211 | case kBGRA_8888_GrPixelConfig: |
| 1212 | if (unpremul) { |
| 1213 | *config8888 = SkCanvas::kBGRA_Unpremul_Config8888; |
| 1214 | } else { |
| 1215 | *config8888 = SkCanvas::kBGRA_Premul_Config8888; |
| 1216 | } |
bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 1217 | return true; |
| 1218 | default: |
| 1219 | return false; |
| 1220 | } |
| 1221 | } |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1222 | |
| 1223 | // It returns a configuration with where the byte position of the R & B components are swapped in |
| 1224 | // relation to the input config. This should only be called with the result of |
| 1225 | // grconfig_to_config8888 as it will fail for other configs. |
| 1226 | SkCanvas::Config8888 swap_config8888_red_and_blue(SkCanvas::Config8888 config8888) { |
| 1227 | switch (config8888) { |
| 1228 | case SkCanvas::kBGRA_Premul_Config8888: |
| 1229 | return SkCanvas::kRGBA_Premul_Config8888; |
| 1230 | case SkCanvas::kBGRA_Unpremul_Config8888: |
| 1231 | return SkCanvas::kRGBA_Unpremul_Config8888; |
| 1232 | case SkCanvas::kRGBA_Premul_Config8888: |
| 1233 | return SkCanvas::kBGRA_Premul_Config8888; |
| 1234 | case SkCanvas::kRGBA_Unpremul_Config8888: |
| 1235 | return SkCanvas::kBGRA_Unpremul_Config8888; |
| 1236 | default: |
| 1237 | GrCrash("Unexpected input"); |
| 1238 | return SkCanvas::kBGRA_Unpremul_Config8888;; |
| 1239 | } |
| 1240 | } |
bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 1241 | } |
| 1242 | |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1243 | bool GrContext::readRenderTargetPixels(GrRenderTarget* target, |
| 1244 | int left, int top, int width, int height, |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1245 | GrPixelConfig dstConfig, void* buffer, size_t rowBytes, |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1246 | uint32_t flags) { |
tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 1247 | SK_TRACE_EVENT0("GrContext::readRenderTargetPixels"); |
bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1248 | ASSERT_OWNED_RESOURCE(target); |
| 1249 | |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1250 | if (NULL == target) { |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1251 | target = fRenderTarget.get(); |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1252 | if (NULL == target) { |
| 1253 | return false; |
| 1254 | } |
| 1255 | } |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1256 | |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1257 | if (!(kDontFlush_PixelOpsFlag & flags)) { |
| 1258 | this->flush(); |
| 1259 | } |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1260 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1261 | // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul. |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1262 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1263 | // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll |
| 1264 | // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read. |
| 1265 | bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top, |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1266 | width, height, dstConfig, |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1267 | rowBytes); |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1268 | // We ignore the preferred config if it is different than our config unless it is an R/B swap. |
| 1269 | // In that case we'll perform an R and B swap while drawing to a scratch texture of the swapped |
| 1270 | // config. Then we will call readPixels on the scratch with the swapped config. The swaps during |
| 1271 | // the draw cancels out the fact that we call readPixels with a config that is R/B swapped from |
| 1272 | // dstConfig. |
| 1273 | GrPixelConfig readConfig = dstConfig; |
| 1274 | bool swapRAndB = false; |
commit-bot@chromium.org | 5d1d79a | 2013-05-24 18:52:52 +0000 | [diff] [blame] | 1275 | if (GrPixelConfigSwapRAndB(dstConfig) == |
| 1276 | fGpu->preferredReadPixelsConfig(dstConfig, target->config())) { |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1277 | readConfig = GrPixelConfigSwapRAndB(readConfig); |
| 1278 | swapRAndB = true; |
| 1279 | } |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1280 | |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1281 | bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags); |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1282 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1283 | if (unpremul && !GrPixelConfigIs8888(dstConfig)) { |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1284 | // The unpremul flag is only allowed for these two configs. |
bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 1285 | return false; |
| 1286 | } |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1287 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1288 | // If the src is a texture and we would have to do conversions after read pixels, we instead |
| 1289 | // do the conversions by drawing the src to a scratch texture. If we handle any of the |
| 1290 | // conversions in the draw we set the corresponding bool to false so that we don't reapply it |
| 1291 | // on the read back pixels. |
| 1292 | GrTexture* src = target->asTexture(); |
bsalomon@google.com | c4ff22a | 2011-11-10 21:56:21 +0000 | [diff] [blame] | 1293 | GrAutoScratchTexture ast; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1294 | if (NULL != src && (swapRAndB || unpremul || flipY)) { |
| 1295 | // Make the scratch a render target because we don't have a robust readTexturePixels as of |
| 1296 | // yet. It calls this function. |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 1297 | GrTextureDesc desc; |
| 1298 | desc.fFlags = kRenderTarget_GrTextureFlagBit; |
| 1299 | desc.fWidth = width; |
| 1300 | desc.fHeight = height; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1301 | desc.fConfig = readConfig; |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 1302 | desc.fOrigin = kTopLeft_GrSurfaceOrigin; |
bsalomon@google.com | c4ff22a | 2011-11-10 21:56:21 +0000 | [diff] [blame] | 1303 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1304 | // When a full read back is faster than a partial we could always make the scratch exactly |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1305 | // match the passed rect. However, if we see many different size rectangles we will trash |
| 1306 | // our texture cache and pay the cost of creating and destroying many textures. So, we only |
| 1307 | // request an exact match when the caller is reading an entire RT. |
bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 1308 | ScratchTexMatch match = kApprox_ScratchTexMatch; |
| 1309 | if (0 == left && |
| 1310 | 0 == top && |
| 1311 | target->width() == width && |
| 1312 | target->height() == height && |
| 1313 | fGpu->fullReadPixelsIsFasterThanPartial()) { |
| 1314 | match = kExact_ScratchTexMatch; |
| 1315 | } |
| 1316 | ast.set(this, desc, match); |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1317 | GrTexture* texture = ast.texture(); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1318 | if (texture) { |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1319 | // compute a matrix to perform the draw |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1320 | SkMatrix textureMatrix; |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 1321 | textureMatrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top); |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1322 | textureMatrix.postIDiv(src->width(), src->height()); |
| 1323 | |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1324 | SkAutoTUnref<const GrEffectRef> effect; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1325 | if (unpremul) { |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1326 | effect.reset(this->createPMToUPMEffect(src, swapRAndB, textureMatrix)); |
| 1327 | if (NULL != effect) { |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1328 | unpremul = false; // we no longer need to do this on CPU after the read back. |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1329 | } |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1330 | } |
| 1331 | // If we failed to create a PM->UPM effect and have no other conversions to perform then |
| 1332 | // there is no longer any point to using the scratch. |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1333 | if (NULL != effect || flipY || swapRAndB) { |
| 1334 | if (!effect) { |
| 1335 | effect.reset(GrConfigConversionEffect::Create( |
| 1336 | src, |
| 1337 | swapRAndB, |
| 1338 | GrConfigConversionEffect::kNone_PMConversion, |
| 1339 | textureMatrix)); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1340 | } |
| 1341 | swapRAndB = false; // we will handle the swap in the draw. |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1342 | |
robertphillips@google.com | 13f181f | 2013-03-02 12:02:08 +0000 | [diff] [blame] | 1343 | // We protect the existing geometry here since it may not be |
| 1344 | // clear to the caller that a draw operation (i.e., drawSimpleRect) |
| 1345 | // can be invoked in this method |
| 1346 | GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1347 | GrDrawState* drawState = fGpu->drawState(); |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1348 | GrAssert(effect); |
bsalomon@google.com | 9e040ae | 2013-01-28 14:31:19 +0000 | [diff] [blame] | 1349 | drawState->setEffect(0, effect); |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1350 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1351 | drawState->setRenderTarget(texture->asRenderTarget()); |
bsalomon@google.com | 8171288 | 2012-11-01 17:12:34 +0000 | [diff] [blame] | 1352 | GrRect rect = GrRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1353 | fGpu->drawSimpleRect(rect, NULL); |
| 1354 | // we want to read back from the scratch's origin |
| 1355 | left = 0; |
| 1356 | top = 0; |
| 1357 | target = texture->asRenderTarget(); |
| 1358 | } |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1359 | } |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1360 | } |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1361 | if (!fGpu->readPixels(target, |
| 1362 | left, top, width, height, |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 1363 | readConfig, buffer, rowBytes)) { |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1364 | return false; |
| 1365 | } |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1366 | // Perform any conversions we weren't able to perform using a scratch texture. |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 1367 | if (unpremul || swapRAndB) { |
bsalomon@google.com | ccaa002 | 2012-09-25 19:55:07 +0000 | [diff] [blame] | 1368 | // These are initialized to suppress a warning |
| 1369 | SkCanvas::Config8888 srcC8888 = SkCanvas::kNative_Premul_Config8888; |
| 1370 | SkCanvas::Config8888 dstC8888 = SkCanvas::kNative_Premul_Config8888; |
| 1371 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1372 | SkDEBUGCODE(bool c8888IsValid =) grconfig_to_config8888(dstConfig, false, &srcC8888); |
| 1373 | grconfig_to_config8888(dstConfig, unpremul, &dstC8888); |
bsalomon@google.com | ccaa002 | 2012-09-25 19:55:07 +0000 | [diff] [blame] | 1374 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1375 | if (swapRAndB) { |
| 1376 | GrAssert(c8888IsValid); // we should only do r/b swap on 8888 configs |
| 1377 | srcC8888 = swap_config8888_red_and_blue(srcC8888); |
| 1378 | } |
senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 1379 | GrAssert(c8888IsValid); |
| 1380 | uint32_t* b32 = reinterpret_cast<uint32_t*>(buffer); |
| 1381 | SkConvertConfig8888Pixels(b32, rowBytes, dstC8888, |
| 1382 | b32, rowBytes, srcC8888, |
| 1383 | width, height); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1384 | } |
| 1385 | return true; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1386 | } |
| 1387 | |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 1388 | void GrContext::resolveRenderTarget(GrRenderTarget* target) { |
| 1389 | GrAssert(target); |
| 1390 | ASSERT_OWNED_RESOURCE(target); |
| 1391 | // In the future we may track whether there are any pending draws to this |
| 1392 | // target. We don't today so we always perform a flush. We don't promise |
| 1393 | // this to our clients, though. |
| 1394 | this->flush(); |
| 1395 | fGpu->resolveRenderTarget(target); |
| 1396 | } |
| 1397 | |
scroggo@google.com | a2a3192 | 2012-12-07 19:14:45 +0000 | [diff] [blame] | 1398 | void GrContext::copyTexture(GrTexture* src, GrRenderTarget* dst, const SkIPoint* topLeft) { |
senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 1399 | if (NULL == src || NULL == dst) { |
| 1400 | return; |
| 1401 | } |
| 1402 | ASSERT_OWNED_RESOURCE(src); |
| 1403 | |
twiz@google.com | 1ac87ff | 2012-04-27 19:39:33 +0000 | [diff] [blame] | 1404 | // Writes pending to the source texture are not tracked, so a flush |
| 1405 | // is required to ensure that the copy captures the most recent contents |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1406 | // of the source texture. See similar behavior in |
twiz@google.com | 1ac87ff | 2012-04-27 19:39:33 +0000 | [diff] [blame] | 1407 | // GrContext::resolveRenderTarget. |
| 1408 | this->flush(); |
| 1409 | |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 1410 | GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit); |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 1411 | GrDrawState* drawState = fGpu->drawState(); |
| 1412 | drawState->setRenderTarget(dst); |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1413 | SkMatrix sampleM; |
senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 1414 | sampleM.setIDiv(src->width(), src->height()); |
scroggo@google.com | a2a3192 | 2012-12-07 19:14:45 +0000 | [diff] [blame] | 1415 | SkIRect srcRect = SkIRect::MakeWH(dst->width(), dst->height()); |
| 1416 | if (NULL != topLeft) { |
| 1417 | srcRect.offset(*topLeft); |
| 1418 | } |
| 1419 | SkIRect srcBounds = SkIRect::MakeWH(src->width(), src->height()); |
| 1420 | if (!srcRect.intersect(srcBounds)) { |
| 1421 | return; |
| 1422 | } |
| 1423 | sampleM.preTranslate(SkIntToScalar(srcRect.fLeft), SkIntToScalar(srcRect.fTop)); |
bsalomon@google.com | dfdb7e5 | 2012-10-16 15:19:45 +0000 | [diff] [blame] | 1424 | drawState->createTextureEffect(0, src, sampleM); |
scroggo@google.com | a2a3192 | 2012-12-07 19:14:45 +0000 | [diff] [blame] | 1425 | SkRect dstR = SkRect::MakeWH(SkIntToScalar(srcRect.width()), SkIntToScalar(srcRect.height())); |
| 1426 | fGpu->drawSimpleRect(dstR, NULL); |
senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 1427 | } |
| 1428 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1429 | bool GrContext::writeRenderTargetPixels(GrRenderTarget* target, |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1430 | int left, int top, int width, int height, |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1431 | GrPixelConfig srcConfig, |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1432 | const void* buffer, |
| 1433 | size_t rowBytes, |
| 1434 | uint32_t flags) { |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1435 | SK_TRACE_EVENT0("GrContext::writeRenderTargetPixels"); |
bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1436 | ASSERT_OWNED_RESOURCE(target); |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1437 | |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1438 | if (NULL == target) { |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1439 | target = fRenderTarget.get(); |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1440 | if (NULL == target) { |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1441 | return false; |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1442 | } |
| 1443 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1444 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1445 | // TODO: when underlying api has a direct way to do this we should use it (e.g. glDrawPixels on |
| 1446 | // desktop GL). |
| 1447 | |
| 1448 | // We will always call some form of writeTexturePixels and we will pass our flags on to it. |
| 1449 | // Thus, we don't perform a flush here since that call will do it (if the kNoFlush flag isn't |
| 1450 | // set.) |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1451 | |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1452 | // If the RT is also a texture and we don't have to premultiply then take the texture path. |
| 1453 | // We expect to be at least as fast or faster since it doesn't use an intermediate texture as |
| 1454 | // we do below. |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1455 | |
bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 1456 | #if !GR_MAC_BUILD |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1457 | // At least some drivers on the Mac get confused when glTexImage2D is called on a texture |
| 1458 | // attached to an FBO. The FBO still sees the old image. TODO: determine what OS versions and/or |
| 1459 | // HW is affected. |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1460 | if (NULL != target->asTexture() && !(kUnpremul_PixelOpsFlag & flags) && |
| 1461 | fGpu->canWriteTexturePixels(target->asTexture(), srcConfig)) { |
| 1462 | return this->writeTexturePixels(target->asTexture(), |
| 1463 | left, top, width, height, |
| 1464 | srcConfig, buffer, rowBytes, flags); |
bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 1465 | } |
| 1466 | #endif |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1467 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1468 | // We ignore the preferred config unless it is a R/B swap of the src config. In that case |
| 1469 | // we will upload the original src data to a scratch texture but we will spoof it as the swapped |
| 1470 | // config. This scratch will then have R and B swapped. We correct for this by swapping again |
| 1471 | // when drawing the scratch to the dst using a conversion effect. |
| 1472 | bool swapRAndB = false; |
| 1473 | GrPixelConfig writeConfig = srcConfig; |
commit-bot@chromium.org | 5d1d79a | 2013-05-24 18:52:52 +0000 | [diff] [blame] | 1474 | if (GrPixelConfigSwapRAndB(srcConfig) == |
| 1475 | fGpu->preferredWritePixelsConfig(srcConfig, target->config())) { |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1476 | writeConfig = GrPixelConfigSwapRAndB(srcConfig); |
| 1477 | swapRAndB = true; |
bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 1478 | } |
| 1479 | |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 1480 | GrTextureDesc desc; |
| 1481 | desc.fWidth = width; |
| 1482 | desc.fHeight = height; |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1483 | desc.fConfig = writeConfig; |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 1484 | GrAutoScratchTexture ast(this, desc); |
| 1485 | GrTexture* texture = ast.texture(); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1486 | if (NULL == texture) { |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1487 | return false; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1488 | } |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1489 | |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1490 | SkAutoTUnref<const GrEffectRef> effect; |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1491 | SkMatrix textureMatrix; |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1492 | textureMatrix.setIDiv(texture->width(), texture->height()); |
| 1493 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1494 | // allocate a tmp buffer and sw convert the pixels to premul |
| 1495 | SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0); |
| 1496 | |
| 1497 | if (kUnpremul_PixelOpsFlag & flags) { |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1498 | if (!GrPixelConfigIs8888(srcConfig)) { |
| 1499 | return false; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1500 | } |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1501 | effect.reset(this->createUPMToPMEffect(texture, swapRAndB, textureMatrix)); |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1502 | // handle the unpremul step on the CPU if we couldn't create an effect to do it. |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1503 | if (NULL == effect) { |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1504 | SkCanvas::Config8888 srcConfig8888, dstConfig8888; |
| 1505 | GR_DEBUGCODE(bool success = ) |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1506 | grconfig_to_config8888(srcConfig, true, &srcConfig8888); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1507 | GrAssert(success); |
| 1508 | GR_DEBUGCODE(success = ) |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1509 | grconfig_to_config8888(srcConfig, false, &dstConfig8888); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1510 | GrAssert(success); |
| 1511 | const uint32_t* src = reinterpret_cast<const uint32_t*>(buffer); |
| 1512 | tmpPixels.reset(width * height); |
| 1513 | SkConvertConfig8888Pixels(tmpPixels.get(), 4 * width, dstConfig8888, |
| 1514 | src, rowBytes, srcConfig8888, |
| 1515 | width, height); |
| 1516 | buffer = tmpPixels.get(); |
| 1517 | rowBytes = 4 * width; |
| 1518 | } |
| 1519 | } |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1520 | if (NULL == effect) { |
| 1521 | effect.reset(GrConfigConversionEffect::Create(texture, |
| 1522 | swapRAndB, |
| 1523 | GrConfigConversionEffect::kNone_PMConversion, |
| 1524 | textureMatrix)); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1525 | } |
| 1526 | |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1527 | if (!this->writeTexturePixels(texture, |
| 1528 | 0, 0, width, height, |
| 1529 | writeConfig, buffer, rowBytes, |
| 1530 | flags & ~kUnpremul_PixelOpsFlag)) { |
| 1531 | return false; |
| 1532 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1533 | |
robertphillips@google.com | 13f181f | 2013-03-02 12:02:08 +0000 | [diff] [blame] | 1534 | // writeRenderTargetPixels can be called in the midst of drawing another |
skia.committer@gmail.com | 0c23faf | 2013-03-03 07:16:29 +0000 | [diff] [blame] | 1535 | // object (e.g., when uploading a SW path rendering to the gpu while |
robertphillips@google.com | 13f181f | 2013-03-02 12:02:08 +0000 | [diff] [blame] | 1536 | // drawing a rect) so preserve the current geometry. |
| 1537 | GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit); |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 1538 | GrDrawState* drawState = fGpu->drawState(); |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1539 | GrAssert(effect); |
bsalomon@google.com | 9e040ae | 2013-01-28 14:31:19 +0000 | [diff] [blame] | 1540 | drawState->setEffect(0, effect); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1541 | |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1542 | SkMatrix matrix; |
bsalomon@google.com | 8171288 | 2012-11-01 17:12:34 +0000 | [diff] [blame] | 1543 | matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top)); |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 1544 | drawState->setViewMatrix(matrix); |
| 1545 | drawState->setRenderTarget(target); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1546 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1547 | fGpu->drawSimpleRect(GrRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)), NULL); |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1548 | return true; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1549 | } |
| 1550 | //////////////////////////////////////////////////////////////////////////////// |
| 1551 | |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 1552 | GrDrawTarget* GrContext::prepareToDraw(const GrPaint* paint, BufferedDraw buffered) { |
bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1553 | if (kNo_BufferedDraw == buffered && kYes_BufferedDraw == fLastDrawWasBuffered) { |
bsalomon@google.com | fb4ce6f | 2012-03-14 13:27:54 +0000 | [diff] [blame] | 1554 | this->flushDrawBuffer(); |
bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1555 | fLastDrawWasBuffered = kNo_BufferedDraw; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1556 | } |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1557 | ASSERT_OWNED_RESOURCE(fRenderTarget.get()); |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 1558 | if (NULL != paint) { |
bsalomon@google.com | af84e74 | 2012-10-05 13:23:24 +0000 | [diff] [blame] | 1559 | GrAssert(fDrawState->stagesDisabled()); |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1560 | fDrawState->setFromPaint(*paint, fViewMatrix, fRenderTarget.get()); |
bsalomon@google.com | af84e74 | 2012-10-05 13:23:24 +0000 | [diff] [blame] | 1561 | #if GR_DEBUG_PARTIAL_COVERAGE_CHECK |
| 1562 | if ((paint->hasMask() || 0xff != paint->fCoverage) && |
| 1563 | !fGpu->canApplyCoverage()) { |
| 1564 | GrPrintf("Partial pixel coverage will be incorrectly blended.\n"); |
| 1565 | } |
| 1566 | #endif |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1567 | } else { |
| 1568 | fDrawState->reset(); |
| 1569 | *fDrawState->viewMatrix() = fViewMatrix; |
| 1570 | fDrawState->setRenderTarget(fRenderTarget.get()); |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 1571 | } |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1572 | GrDrawTarget* target; |
bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1573 | if (kYes_BufferedDraw == buffered) { |
bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1574 | fLastDrawWasBuffered = kYes_BufferedDraw; |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1575 | target = fDrawBuffer; |
bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1576 | } else { |
| 1577 | GrAssert(kNo_BufferedDraw == buffered); |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1578 | fLastDrawWasBuffered = kNo_BufferedDraw; |
| 1579 | target = fGpu; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1580 | } |
commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame^] | 1581 | fDrawState->setState(GrDrawState::kClip_StateBit, NULL != fClip && |
| 1582 | !fClip->fClipStack->isWideOpen()); |
| 1583 | target->setClip(fClip); |
| 1584 | GrAssert(fDrawState == target->drawState()); |
| 1585 | return target; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1586 | } |
| 1587 | |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1588 | /* |
| 1589 | * This method finds a path renderer that can draw the specified path on |
| 1590 | * the provided target. |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1591 | * Due to its expense, the software path renderer has split out so it can |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1592 | * can be individually allowed/disallowed via the "allowSW" boolean. |
| 1593 | */ |
bsalomon@google.com | 8d033a1 | 2012-04-27 15:52:53 +0000 | [diff] [blame] | 1594 | GrPathRenderer* GrContext::getPathRenderer(const SkPath& path, |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 1595 | const SkStrokeRec& stroke, |
bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 1596 | const GrDrawTarget* target, |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 1597 | bool allowSW, |
| 1598 | GrPathRendererChain::DrawType drawType, |
| 1599 | GrPathRendererChain::StencilSupport* stencilSupport) { |
| 1600 | |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1601 | if (NULL == fPathRendererChain) { |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 1602 | fPathRendererChain = SkNEW_ARGS(GrPathRendererChain, (this)); |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1603 | } |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1604 | |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 1605 | GrPathRenderer* pr = fPathRendererChain->getPathRenderer(path, |
| 1606 | stroke, |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1607 | target, |
bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 1608 | drawType, |
| 1609 | stencilSupport); |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1610 | |
| 1611 | if (NULL == pr && allowSW) { |
| 1612 | if (NULL == fSoftwarePathRenderer) { |
tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1613 | fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this)); |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1614 | } |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1615 | pr = fSoftwarePathRenderer; |
| 1616 | } |
| 1617 | |
| 1618 | return pr; |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1619 | } |
| 1620 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1621 | //////////////////////////////////////////////////////////////////////////////// |
| 1622 | |
robertphillips@google.com | 99a5ac0 | 2012-04-10 19:26:38 +0000 | [diff] [blame] | 1623 | bool GrContext::isConfigRenderable(GrPixelConfig config) const { |
| 1624 | return fGpu->isConfigRenderable(config); |
| 1625 | } |
| 1626 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1627 | static inline intptr_t setOrClear(intptr_t bits, int shift, intptr_t pred) { |
| 1628 | intptr_t mask = 1 << shift; |
| 1629 | if (pred) { |
| 1630 | bits |= mask; |
| 1631 | } else { |
| 1632 | bits &= ~mask; |
| 1633 | } |
| 1634 | return bits; |
| 1635 | } |
| 1636 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 1637 | void GrContext::setupDrawBuffer() { |
| 1638 | |
| 1639 | GrAssert(NULL == fDrawBuffer); |
| 1640 | GrAssert(NULL == fDrawBufferVBAllocPool); |
| 1641 | GrAssert(NULL == fDrawBufferIBAllocPool); |
| 1642 | |
bsalomon@google.com | de6ac2d | 2011-02-25 21:50:42 +0000 | [diff] [blame] | 1643 | fDrawBufferVBAllocPool = |
tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1644 | SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false, |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1645 | DRAW_BUFFER_VBPOOL_BUFFER_SIZE, |
tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1646 | DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS)); |
bsalomon@google.com | de6ac2d | 2011-02-25 21:50:42 +0000 | [diff] [blame] | 1647 | fDrawBufferIBAllocPool = |
tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1648 | SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false, |
bsalomon@google.com | de6ac2d | 2011-02-25 21:50:42 +0000 | [diff] [blame] | 1649 | DRAW_BUFFER_IBPOOL_BUFFER_SIZE, |
tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1650 | DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS)); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1651 | |
tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1652 | fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu, |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 1653 | fDrawBufferVBAllocPool, |
| 1654 | fDrawBufferIBAllocPool)); |
bsalomon@google.com | 3c4d032 | 2012-04-03 18:04:51 +0000 | [diff] [blame] | 1655 | |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 1656 | fDrawBuffer->setDrawState(fDrawState); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1657 | } |
| 1658 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1659 | GrDrawTarget* GrContext::getTextTarget(const GrPaint& paint) { |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 1660 | return this->prepareToDraw(&paint, BUFFERED_DRAW); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1661 | } |
| 1662 | |
| 1663 | const GrIndexBuffer* GrContext::getQuadIndexBuffer() const { |
| 1664 | return fGpu->getQuadIndexBuffer(); |
| 1665 | } |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 1666 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1667 | namespace { |
| 1668 | void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) { |
| 1669 | GrConfigConversionEffect::PMConversion pmToUPM; |
| 1670 | GrConfigConversionEffect::PMConversion upmToPM; |
| 1671 | GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM); |
| 1672 | *pmToUPMValue = pmToUPM; |
| 1673 | *upmToPMValue = upmToPM; |
| 1674 | } |
| 1675 | } |
| 1676 | |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1677 | const GrEffectRef* GrContext::createPMToUPMEffect(GrTexture* texture, |
| 1678 | bool swapRAndB, |
| 1679 | const SkMatrix& matrix) { |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1680 | if (!fDidTestPMConversions) { |
| 1681 | test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion); |
bsalomon@google.com | d0f3f68 | 2012-08-28 13:08:14 +0000 | [diff] [blame] | 1682 | fDidTestPMConversions = true; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1683 | } |
| 1684 | GrConfigConversionEffect::PMConversion pmToUPM = |
| 1685 | static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion); |
| 1686 | if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) { |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1687 | return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1688 | } else { |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1689 | return NULL; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1690 | } |
| 1691 | } |
| 1692 | |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1693 | const GrEffectRef* GrContext::createUPMToPMEffect(GrTexture* texture, |
| 1694 | bool swapRAndB, |
| 1695 | const SkMatrix& matrix) { |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1696 | if (!fDidTestPMConversions) { |
| 1697 | test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion); |
bsalomon@google.com | d0f3f68 | 2012-08-28 13:08:14 +0000 | [diff] [blame] | 1698 | fDidTestPMConversions = true; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1699 | } |
| 1700 | GrConfigConversionEffect::PMConversion upmToPM = |
| 1701 | static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion); |
| 1702 | if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) { |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1703 | return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1704 | } else { |
bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1705 | return NULL; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1706 | } |
| 1707 | } |
| 1708 | |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1709 | GrTexture* GrContext::gaussianBlur(GrTexture* srcTexture, |
senorblanco@chromium.org | 1e95d71 | 2012-07-18 19:52:53 +0000 | [diff] [blame] | 1710 | bool canClobberSrc, |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1711 | const SkRect& rect, |
| 1712 | float sigmaX, float sigmaY) { |
senorblanco@chromium.org | ceb4414 | 2012-03-05 20:53:36 +0000 | [diff] [blame] | 1713 | ASSERT_OWNED_RESOURCE(srcTexture); |
robertphillips@google.com | ccb3950 | 2012-10-01 18:25:13 +0000 | [diff] [blame] | 1714 | |
| 1715 | AutoRenderTarget art(this); |
| 1716 | |
bsalomon@google.com | 3cbaa2d | 2012-10-12 14:51:52 +0000 | [diff] [blame] | 1717 | AutoMatrix am; |
| 1718 | am.setIdentity(this); |
| 1719 | |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1720 | SkIRect clearRect; |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 1721 | int scaleFactorX, radiusX; |
| 1722 | int scaleFactorY, radiusY; |
| 1723 | sigmaX = adjust_sigma(sigmaX, &scaleFactorX, &radiusX); |
| 1724 | sigmaY = adjust_sigma(sigmaY, &scaleFactorY, &radiusY); |
bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1725 | |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1726 | SkRect srcRect(rect); |
| 1727 | scale_rect(&srcRect, 1.0f / scaleFactorX, 1.0f / scaleFactorY); |
| 1728 | srcRect.roundOut(); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1729 | scale_rect(&srcRect, static_cast<float>(scaleFactorX), |
robertphillips@google.com | 8637a36 | 2012-04-10 18:32:35 +0000 | [diff] [blame] | 1730 | static_cast<float>(scaleFactorY)); |
robertphillips@google.com | 3e11c0b | 2012-07-11 18:20:35 +0000 | [diff] [blame] | 1731 | |
robertphillips@google.com | 56c79b1 | 2012-07-11 20:57:46 +0000 | [diff] [blame] | 1732 | AutoClip acs(this, srcRect); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1733 | |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1734 | GrAssert(kBGRA_8888_GrPixelConfig == srcTexture->config() || |
| 1735 | kRGBA_8888_GrPixelConfig == srcTexture->config() || |
robertphillips@google.com | 99a5ac0 | 2012-04-10 19:26:38 +0000 | [diff] [blame] | 1736 | kAlpha_8_GrPixelConfig == srcTexture->config()); |
| 1737 | |
robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 1738 | GrTextureDesc desc; |
| 1739 | desc.fFlags = kRenderTarget_GrTextureFlagBit | kNoStencil_GrTextureFlagBit; |
| 1740 | desc.fWidth = SkScalarFloorToInt(srcRect.width()); |
| 1741 | desc.fHeight = SkScalarFloorToInt(srcRect.height()); |
| 1742 | desc.fConfig = srcTexture->config(); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1743 | |
senorblanco@chromium.org | 1e95d71 | 2012-07-18 19:52:53 +0000 | [diff] [blame] | 1744 | GrAutoScratchTexture temp1, temp2; |
| 1745 | GrTexture* dstTexture = temp1.set(this, desc); |
| 1746 | GrTexture* tempTexture = canClobberSrc ? srcTexture : temp2.set(this, desc); |
robertphillips@google.com | 7d12675 | 2012-10-19 12:56:26 +0000 | [diff] [blame] | 1747 | if (NULL == dstTexture || NULL == tempTexture) { |
| 1748 | return NULL; |
| 1749 | } |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1750 | |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1751 | GrPaint paint; |
| 1752 | paint.reset(); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1753 | |
| 1754 | for (int i = 1; i < scaleFactorX || i < scaleFactorY; i *= 2) { |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1755 | SkMatrix matrix; |
bsalomon@google.com | dfdb7e5 | 2012-10-16 15:19:45 +0000 | [diff] [blame] | 1756 | matrix.setIDiv(srcTexture->width(), srcTexture->height()); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1757 | this->setRenderTarget(dstTexture->asRenderTarget()); |
| 1758 | SkRect dstRect(srcRect); |
| 1759 | scale_rect(&dstRect, i < scaleFactorX ? 0.5f : 1.0f, |
bsalomon@google.com | dfdb7e5 | 2012-10-16 15:19:45 +0000 | [diff] [blame] | 1760 | i < scaleFactorY ? 0.5f : 1.0f); |
| 1761 | |
bsalomon@google.com | 68b58c9 | 2013-01-17 16:50:08 +0000 | [diff] [blame] | 1762 | paint.colorStage(0)->setEffect(GrSimpleTextureEffect::Create(srcTexture, |
bsalomon@google.com | 0ac6af4 | 2013-01-16 15:16:18 +0000 | [diff] [blame] | 1763 | matrix, |
| 1764 | true))->unref(); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1765 | this->drawRectToRect(paint, dstRect, srcRect); |
| 1766 | srcRect = dstRect; |
senorblanco@chromium.org | 1e95d71 | 2012-07-18 19:52:53 +0000 | [diff] [blame] | 1767 | srcTexture = dstTexture; |
| 1768 | SkTSwap(dstTexture, tempTexture); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1769 | } |
| 1770 | |
robertphillips@google.com | 7a39633 | 2012-05-10 15:11:27 +0000 | [diff] [blame] | 1771 | SkIRect srcIRect; |
| 1772 | srcRect.roundOut(&srcIRect); |
| 1773 | |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1774 | if (sigmaX > 0.0f) { |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1775 | if (scaleFactorX > 1) { |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 1776 | // Clear out a radius to the right of the srcRect to prevent the |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1777 | // X convolution from reading garbage. |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1778 | clearRect = SkIRect::MakeXYWH(srcIRect.fRight, srcIRect.fTop, |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 1779 | radiusX, srcIRect.height()); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1780 | this->clear(&clearRect, 0x0); |
| 1781 | } |
| 1782 | |
| 1783 | this->setRenderTarget(dstTexture->asRenderTarget()); |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 1784 | GrDrawTarget* target = this->prepareToDraw(NULL, BUFFERED_DRAW); |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 1785 | convolve_gaussian(target, srcTexture, srcRect, sigmaX, radiusX, |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 1786 | Gr1DKernelEffect::kX_Direction); |
senorblanco@chromium.org | 1e95d71 | 2012-07-18 19:52:53 +0000 | [diff] [blame] | 1787 | srcTexture = dstTexture; |
| 1788 | SkTSwap(dstTexture, tempTexture); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1789 | } |
| 1790 | |
| 1791 | if (sigmaY > 0.0f) { |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1792 | if (scaleFactorY > 1 || sigmaX > 0.0f) { |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 1793 | // Clear out a radius below the srcRect to prevent the Y |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1794 | // convolution from reading garbage. |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1795 | clearRect = SkIRect::MakeXYWH(srcIRect.fLeft, srcIRect.fBottom, |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 1796 | srcIRect.width(), radiusY); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1797 | this->clear(&clearRect, 0x0); |
| 1798 | } |
| 1799 | |
| 1800 | this->setRenderTarget(dstTexture->asRenderTarget()); |
bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 1801 | GrDrawTarget* target = this->prepareToDraw(NULL, BUFFERED_DRAW); |
bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 1802 | convolve_gaussian(target, srcTexture, srcRect, sigmaY, radiusY, |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 1803 | Gr1DKernelEffect::kY_Direction); |
senorblanco@chromium.org | 1e95d71 | 2012-07-18 19:52:53 +0000 | [diff] [blame] | 1804 | srcTexture = dstTexture; |
| 1805 | SkTSwap(dstTexture, tempTexture); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1806 | } |
| 1807 | |
| 1808 | if (scaleFactorX > 1 || scaleFactorY > 1) { |
| 1809 | // Clear one pixel to the right and below, to accommodate bilinear |
| 1810 | // upsampling. |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1811 | clearRect = SkIRect::MakeXYWH(srcIRect.fLeft, srcIRect.fBottom, |
robertphillips@google.com | 7a39633 | 2012-05-10 15:11:27 +0000 | [diff] [blame] | 1812 | srcIRect.width() + 1, 1); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1813 | this->clear(&clearRect, 0x0); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1814 | clearRect = SkIRect::MakeXYWH(srcIRect.fRight, srcIRect.fTop, |
robertphillips@google.com | 7a39633 | 2012-05-10 15:11:27 +0000 | [diff] [blame] | 1815 | 1, srcIRect.height()); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1816 | this->clear(&clearRect, 0x0); |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1817 | SkMatrix matrix; |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1818 | // FIXME: This should be mitchell, not bilinear. |
bsalomon@google.com | dfdb7e5 | 2012-10-16 15:19:45 +0000 | [diff] [blame] | 1819 | matrix.setIDiv(srcTexture->width(), srcTexture->height()); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1820 | this->setRenderTarget(dstTexture->asRenderTarget()); |
bsalomon@google.com | 68b58c9 | 2013-01-17 16:50:08 +0000 | [diff] [blame] | 1821 | paint.colorStage(0)->setEffect(GrSimpleTextureEffect::Create(srcTexture, |
bsalomon@google.com | 0ac6af4 | 2013-01-16 15:16:18 +0000 | [diff] [blame] | 1822 | matrix, |
| 1823 | true))->unref(); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1824 | SkRect dstRect(srcRect); |
robertphillips@google.com | 7a39633 | 2012-05-10 15:11:27 +0000 | [diff] [blame] | 1825 | scale_rect(&dstRect, (float) scaleFactorX, (float) scaleFactorY); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1826 | this->drawRectToRect(paint, dstRect, srcRect); |
| 1827 | srcRect = dstRect; |
senorblanco@chromium.org | 1e95d71 | 2012-07-18 19:52:53 +0000 | [diff] [blame] | 1828 | srcTexture = dstTexture; |
| 1829 | SkTSwap(dstTexture, tempTexture); |
senorblanco@chromium.org | 3b4dd90 | 2012-03-05 20:41:22 +0000 | [diff] [blame] | 1830 | } |
senorblanco@chromium.org | 1e95d71 | 2012-07-18 19:52:53 +0000 | [diff] [blame] | 1831 | if (srcTexture == temp1.texture()) { |
| 1832 | return temp1.detach(); |
| 1833 | } else if (srcTexture == temp2.texture()) { |
| 1834 | return temp2.detach(); |
| 1835 | } else { |
| 1836 | srcTexture->ref(); |
| 1837 | return srcTexture; |
| 1838 | } |
senorblanco@chromium.org | 05054f1 | 2012-03-02 21:05:45 +0000 | [diff] [blame] | 1839 | } |
bsalomon@google.com | 1e266f8 | 2011-12-12 16:11:33 +0000 | [diff] [blame] | 1840 | |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1841 | /////////////////////////////////////////////////////////////////////////////// |
robertphillips@google.com | 5955202 | 2012-08-31 13:07:37 +0000 | [diff] [blame] | 1842 | #if GR_CACHE_STATS |
robertphillips@google.com | 5f9f2f5 | 2012-08-22 10:57:05 +0000 | [diff] [blame] | 1843 | void GrContext::printCacheStats() const { |
| 1844 | fTextureCache->printStats(); |
| 1845 | } |
| 1846 | #endif |