| 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 | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 12 | #include "effects/GrConfigConversionEffect.h" |
| egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 13 | #include "effects/GrDashingEffect.h" |
| 14 | #include "effects/GrSingleTextureEffect.h" |
| bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 15 | |
| jvanverth@google.com | bfe2b9d | 2013-09-06 16:57:29 +0000 | [diff] [blame] | 16 | #include "GrAARectRenderer.h" |
| tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 17 | #include "GrBufferAllocPool.h" |
| commit-bot@chromium.org | dcb8ef9 | 2014-03-27 11:26:10 +0000 | [diff] [blame] | 18 | #include "GrGpu.h" |
| kkinnunen | c6cb56f | 2014-06-24 00:12:27 -0700 | [diff] [blame] | 19 | #include "GrDistanceFieldTextContext.h" |
| commit-bot@chromium.org | 4784182 | 2014-03-27 14:19:17 +0000 | [diff] [blame] | 20 | #include "GrDrawTargetCaps.h" |
| commit-bot@chromium.org | dcb8ef9 | 2014-03-27 11:26:10 +0000 | [diff] [blame] | 21 | #include "GrIndexBuffer.h" |
| commit-bot@chromium.org | 4784182 | 2014-03-27 14:19:17 +0000 | [diff] [blame] | 22 | #include "GrInOrderDrawBuffer.h" |
| robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 23 | #include "GrLayerCache.h" |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 24 | #include "GrOvalRenderer.h" |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 25 | #include "GrPathRenderer.h" |
| tomhudson@google.com | d22b6e4 | 2011-06-24 15:53:40 +0000 | [diff] [blame] | 26 | #include "GrPathUtils.h" |
| bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 27 | #include "GrResourceCache.h" |
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 28 | #include "GrResourceCache2.h" |
| robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 29 | #include "GrSoftwarePathRenderer.h" |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 30 | #include "GrStencilBuffer.h" |
| kkinnunen | c6cb56f | 2014-06-24 00:12:27 -0700 | [diff] [blame] | 31 | #include "GrStencilAndCoverTextContext.h" |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 32 | #include "GrStrokeInfo.h" |
| tomhudson@google.com | 278cbb4 | 2011-06-30 19:37:01 +0000 | [diff] [blame] | 33 | #include "GrTextStrike.h" |
| egdaniel | bbcb38d | 2014-06-19 10:19:29 -0700 | [diff] [blame] | 34 | #include "GrTraceMarker.h" |
| commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 35 | #include "GrTracing.h" |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 36 | #include "SkDashPathPriv.h" |
| reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 37 | #include "SkGr.h" |
| commit-bot@chromium.org | dcb8ef9 | 2014-03-27 11:26:10 +0000 | [diff] [blame] | 38 | #include "SkRTConf.h" |
| commit-bot@chromium.org | 4784182 | 2014-03-27 14:19:17 +0000 | [diff] [blame] | 39 | #include "SkRRect.h" |
| sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 40 | #include "SkStrokeRec.h" |
| commit-bot@chromium.org | dcb8ef9 | 2014-03-27 11:26:10 +0000 | [diff] [blame] | 41 | #include "SkTLazy.h" |
| commit-bot@chromium.org | 4784182 | 2014-03-27 14:19:17 +0000 | [diff] [blame] | 42 | #include "SkTLS.h" |
| commit-bot@chromium.org | 933e65d | 2014-03-20 20:00:24 +0000 | [diff] [blame] | 43 | #include "SkTraceEvent.h" |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 44 | |
| bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 45 | // 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] | 46 | // 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] | 47 | // debugging simpler. |
| bsalomon@google.com | e932c98 | 2013-09-10 19:47:01 +0000 | [diff] [blame] | 48 | SK_CONF_DECLARE(bool, c_Defer, "gpu.deferContext", true, |
| jvanverth@google.com | 65eb4d5 | 2013-03-19 18:51:02 +0000 | [diff] [blame] | 49 | "Defers rendering in GrContext via GrInOrderDrawBuffer."); |
| bsalomon@google.com | 82b0ec6 | 2013-02-07 21:02:36 +0000 | [diff] [blame] | 50 | |
| 51 | #define BUFFERED_DRAW (c_Defer ? kYes_BufferedDraw : kNo_BufferedDraw) |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 52 | |
| commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 53 | #ifdef SK_DEBUG |
| reed@google.com | 4b2d3f3 | 2012-05-15 18:05:50 +0000 | [diff] [blame] | 54 | // change this to a 1 to see notifications when partial coverage fails |
| 55 | #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0 |
| 56 | #else |
| 57 | #define GR_DEBUG_PARTIAL_COVERAGE_CHECK 0 |
| 58 | #endif |
| 59 | |
| robertphillips@google.com | 4e5559a | 2013-10-30 17:04:16 +0000 | [diff] [blame] | 60 | static const size_t MAX_RESOURCE_CACHE_COUNT = GR_DEFAULT_RESOURCE_CACHE_COUNT_LIMIT; |
| 61 | static const size_t MAX_RESOURCE_CACHE_BYTES = GR_DEFAULT_RESOURCE_CACHE_MB_LIMIT * 1024 * 1024; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 62 | |
| bsalomon@google.com | 6036149 | 2012-03-15 17:47:06 +0000 | [diff] [blame] | 63 | static const size_t DRAW_BUFFER_VBPOOL_BUFFER_SIZE = 1 << 15; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 64 | static const int DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS = 4; |
| 65 | |
| bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 66 | static const size_t DRAW_BUFFER_IBPOOL_BUFFER_SIZE = 1 << 11; |
| 67 | static const int DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS = 4; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 68 | |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 69 | #define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this) |
| bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 70 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 71 | // Glorified typedef to avoid including GrDrawState.h in GrContext.h |
| 72 | class GrContext::AutoRestoreEffects : public GrDrawState::AutoRestoreEffects {}; |
| 73 | |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 74 | class GrContext::AutoCheckFlush { |
| 75 | public: |
| 76 | AutoCheckFlush(GrContext* context) : fContext(context) { SkASSERT(NULL != context); } |
| 77 | |
| 78 | ~AutoCheckFlush() { |
| 79 | if (fContext->fFlushToReduceCacheSize) { |
| 80 | fContext->flush(); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | private: |
| 85 | GrContext* fContext; |
| 86 | }; |
| 87 | |
| krajcevski | 9c6d4d7 | 2014-08-12 07:26:25 -0700 | [diff] [blame] | 88 | GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext, |
| 89 | const Options* opts) { |
| 90 | GrContext* context; |
| 91 | if (NULL == opts) { |
| 92 | context = SkNEW_ARGS(GrContext, (Options())); |
| 93 | } else { |
| 94 | context = SkNEW_ARGS(GrContext, (*opts)); |
| 95 | } |
| 96 | |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 97 | if (context->init(backend, backendContext)) { |
| 98 | return context; |
| 99 | } else { |
| 100 | context->unref(); |
| 101 | return NULL; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 102 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 103 | } |
| 104 | |
| krajcevski | 9c6d4d7 | 2014-08-12 07:26:25 -0700 | [diff] [blame] | 105 | GrContext::GrContext(const Options& opts) : fOptions(opts) { |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 106 | fDrawState = NULL; |
| 107 | fGpu = NULL; |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 108 | fClip = NULL; |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 109 | fPathRendererChain = NULL; |
| 110 | fSoftwarePathRenderer = NULL; |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 111 | fResourceCache = NULL; |
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 112 | fResourceCache2 = NULL; |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 113 | fFontCache = NULL; |
| 114 | fDrawBuffer = NULL; |
| 115 | fDrawBufferVBAllocPool = NULL; |
| 116 | fDrawBufferIBAllocPool = NULL; |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 117 | fFlushToReduceCacheSize = false; |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 118 | fAARectRenderer = NULL; |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 119 | fOvalRenderer = NULL; |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 120 | fViewMatrix.reset(); |
| robertphillips@google.com | 44a91dc | 2013-07-25 15:32:06 +0000 | [diff] [blame] | 121 | fMaxTextureSizeOverride = 1 << 20; |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | bool GrContext::init(GrBackend backend, GrBackendContext backendContext) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 125 | SkASSERT(NULL == fGpu); |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 126 | |
| 127 | fGpu = GrGpu::Create(backend, backendContext, this); |
| 128 | if (NULL == fGpu) { |
| 129 | return false; |
| 130 | } |
| 131 | |
| 132 | fDrawState = SkNEW(GrDrawState); |
| 133 | fGpu->setDrawState(fDrawState); |
| 134 | |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 135 | fResourceCache = SkNEW_ARGS(GrResourceCache, (MAX_RESOURCE_CACHE_COUNT, |
| 136 | MAX_RESOURCE_CACHE_BYTES)); |
| 137 | fResourceCache->setOverbudgetCallback(OverbudgetCB, this); |
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 138 | fResourceCache2 = SkNEW(GrResourceCache2); |
| commit-bot@chromium.org | 1836d33 | 2013-07-16 22:55:03 +0000 | [diff] [blame] | 139 | |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 140 | fFontCache = SkNEW_ARGS(GrFontCache, (fGpu)); |
| 141 | |
| robertphillips | 4ec84da | 2014-06-24 13:10:43 -0700 | [diff] [blame] | 142 | fLayerCache.reset(SkNEW_ARGS(GrLayerCache, (this))); |
| robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 143 | |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 144 | fLastDrawWasBuffered = kNo_BufferedDraw; |
| 145 | |
| 146 | fAARectRenderer = SkNEW(GrAARectRenderer); |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 147 | fOvalRenderer = SkNEW(GrOvalRenderer); |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 148 | |
| 149 | fDidTestPMConversions = false; |
| 150 | |
| 151 | this->setupDrawBuffer(); |
| 152 | |
| 153 | return true; |
| bsalomon@google.com | c0af317 | 2012-06-15 14:10:09 +0000 | [diff] [blame] | 154 | } |
| 155 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 156 | GrContext::~GrContext() { |
| bsalomon@google.com | 733c062 | 2013-04-24 17:59:32 +0000 | [diff] [blame] | 157 | if (NULL == fGpu) { |
| 158 | return; |
| 159 | } |
| 160 | |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 161 | this->flush(); |
| robertphillips@google.com | 5acc0e3 | 2012-05-17 12:01:02 +0000 | [diff] [blame] | 162 | |
| robertphillips@google.com | 950b1b0 | 2013-10-21 17:37:28 +0000 | [diff] [blame] | 163 | for (int i = 0; i < fCleanUpData.count(); ++i) { |
| 164 | (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo); |
| 165 | } |
| 166 | |
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 167 | delete fResourceCache2; |
| 168 | fResourceCache2 = NULL; |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 169 | delete fResourceCache; |
| 170 | fResourceCache = NULL; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 171 | delete fFontCache; |
| 172 | delete fDrawBuffer; |
| 173 | delete fDrawBufferVBAllocPool; |
| bsalomon@google.com | de6ac2d | 2011-02-25 21:50:42 +0000 | [diff] [blame] | 174 | delete fDrawBufferIBAllocPool; |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 175 | |
| robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 176 | fAARectRenderer->unref(); |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 177 | fOvalRenderer->unref(); |
| robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 178 | |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 179 | fGpu->unref(); |
| commit-bot@chromium.org | a4de8c2 | 2013-09-09 13:38:37 +0000 | [diff] [blame] | 180 | SkSafeUnref(fPathRendererChain); |
| 181 | SkSafeUnref(fSoftwarePathRenderer); |
| bsalomon@google.com | 10e04bf | 2012-03-30 14:35:04 +0000 | [diff] [blame] | 182 | fDrawState->unref(); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 183 | } |
| 184 | |
| bsalomon | 2354f84 | 2014-07-28 13:48:36 -0700 | [diff] [blame] | 185 | void GrContext::abandonContext() { |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 186 | // abandon first to so destructors |
| 187 | // don't try to free the resources in the API. |
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 188 | fResourceCache2->abandonAll(); |
| 189 | |
| 190 | fGpu->contextAbandonded(); |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 191 | |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 192 | // a path renderer may be holding onto resources that |
| 193 | // are now unusable |
| commit-bot@chromium.org | a4de8c2 | 2013-09-09 13:38:37 +0000 | [diff] [blame] | 194 | SkSafeSetNull(fPathRendererChain); |
| 195 | SkSafeSetNull(fSoftwarePathRenderer); |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 196 | |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 197 | delete fDrawBuffer; |
| 198 | fDrawBuffer = NULL; |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 199 | |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 200 | delete fDrawBufferVBAllocPool; |
| 201 | fDrawBufferVBAllocPool = NULL; |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 202 | |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 203 | delete fDrawBufferIBAllocPool; |
| 204 | fDrawBufferIBAllocPool = NULL; |
| 205 | |
| robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 206 | fAARectRenderer->reset(); |
| commit-bot@chromium.org | ef284a8 | 2013-07-11 22:29:29 +0000 | [diff] [blame] | 207 | fOvalRenderer->reset(); |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 208 | |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 209 | fResourceCache->purgeAllUnlocked(); |
| commit-bot@chromium.org | 5c8ee25 | 2013-11-01 15:23:44 +0000 | [diff] [blame] | 210 | |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 211 | fFontCache->freeAll(); |
| robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 212 | fLayerCache->freeAll(); |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 213 | } |
| 214 | |
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 215 | void GrContext::resetContext(uint32_t state) { |
| 216 | fGpu->markContextDirty(state); |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | void GrContext::freeGpuResources() { |
| 220 | this->flush(); |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 221 | |
| robertphillips@google.com | ff17584 | 2012-05-14 19:31:39 +0000 | [diff] [blame] | 222 | fGpu->purgeResources(); |
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 223 | if (NULL != fDrawBuffer) { |
| 224 | fDrawBuffer->purgeResources(); |
| 225 | } |
| robertphillips@google.com | ff17584 | 2012-05-14 19:31:39 +0000 | [diff] [blame] | 226 | |
| robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 227 | fAARectRenderer->reset(); |
| commit-bot@chromium.org | ef284a8 | 2013-07-11 22:29:29 +0000 | [diff] [blame] | 228 | fOvalRenderer->reset(); |
| robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 229 | |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 230 | fResourceCache->purgeAllUnlocked(); |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 231 | fFontCache->freeAll(); |
| robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 232 | fLayerCache->freeAll(); |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 233 | // a path renderer may be holding onto resources |
| commit-bot@chromium.org | a4de8c2 | 2013-09-09 13:38:37 +0000 | [diff] [blame] | 234 | SkSafeSetNull(fPathRendererChain); |
| 235 | SkSafeSetNull(fSoftwarePathRenderer); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 236 | } |
| 237 | |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 238 | void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const { |
| 239 | if (NULL != resourceCount) { |
| 240 | *resourceCount = fResourceCache->getCachedResourceCount(); |
| 241 | } |
| 242 | if (NULL != resourceBytes) { |
| 243 | *resourceBytes = fResourceCache->getCachedResourceBytes(); |
| 244 | } |
| commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 245 | } |
| 246 | |
| kkinnunen | c6cb56f | 2014-06-24 00:12:27 -0700 | [diff] [blame] | 247 | GrTextContext* GrContext::createTextContext(GrRenderTarget* renderTarget, |
| 248 | const SkDeviceProperties& |
| 249 | leakyProperties, |
| 250 | bool enableDistanceFieldFonts) { |
| 251 | if (fGpu->caps()->pathRenderingSupport()) { |
| 252 | if (renderTarget->getStencilBuffer() && renderTarget->isMultisampled()) { |
| 253 | return SkNEW_ARGS(GrStencilAndCoverTextContext, (this, leakyProperties)); |
| 254 | } |
| 255 | } |
| 256 | return SkNEW_ARGS(GrDistanceFieldTextContext, (this, leakyProperties, |
| 257 | enableDistanceFieldFonts)); |
| 258 | } |
| 259 | |
| bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 260 | //////////////////////////////////////////////////////////////////////////////// |
| 261 | |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 262 | GrTexture* GrContext::findAndRefTexture(const GrTextureDesc& desc, |
| 263 | const GrCacheID& cacheID, |
| 264 | const GrTextureParams* params) { |
| commit-bot@chromium.org | e49157f | 2014-05-09 20:46:48 +0000 | [diff] [blame] | 265 | GrResourceKey resourceKey = GrTextureImpl::ComputeKey(fGpu, params, desc, cacheID); |
| bsalomon | 6d3fe02 | 2014-07-25 08:35:45 -0700 | [diff] [blame] | 266 | GrGpuResource* resource = fResourceCache->find(resourceKey); |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 267 | SkSafeRef(resource); |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 268 | return static_cast<GrTexture*>(resource); |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 271 | bool GrContext::isTextureInCache(const GrTextureDesc& desc, |
| bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 272 | const GrCacheID& cacheID, |
| bsalomon@google.com | b867099 | 2012-07-25 21:27:09 +0000 | [diff] [blame] | 273 | const GrTextureParams* params) const { |
| commit-bot@chromium.org | e49157f | 2014-05-09 20:46:48 +0000 | [diff] [blame] | 274 | GrResourceKey resourceKey = GrTextureImpl::ComputeKey(fGpu, params, desc, cacheID); |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 275 | return fResourceCache->hasKey(resourceKey); |
| bsalomon@google.com | fb30951 | 2011-11-30 14:13:48 +0000 | [diff] [blame] | 276 | } |
| 277 | |
| robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 278 | void GrContext::addStencilBuffer(GrStencilBuffer* sb) { |
| bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 279 | ASSERT_OWNED_RESOURCE(sb); |
| robertphillips@google.com | 46a8600 | 2012-08-08 10:42:44 +0000 | [diff] [blame] | 280 | |
| 281 | GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(sb->width(), |
| 282 | sb->height(), |
| 283 | sb->numSamples()); |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 284 | fResourceCache->addResource(resourceKey, sb); |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 285 | } |
| 286 | |
| robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 287 | GrStencilBuffer* GrContext::findStencilBuffer(int width, int height, |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 288 | int sampleCnt) { |
| robertphillips@google.com | 46a8600 | 2012-08-08 10:42:44 +0000 | [diff] [blame] | 289 | GrResourceKey resourceKey = GrStencilBuffer::ComputeKey(width, |
| 290 | height, |
| 291 | sampleCnt); |
| bsalomon | 6d3fe02 | 2014-07-25 08:35:45 -0700 | [diff] [blame] | 292 | GrGpuResource* resource = fResourceCache->find(resourceKey); |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 293 | return static_cast<GrStencilBuffer*>(resource); |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 294 | } |
| 295 | |
| commit-bot@chromium.org | b0ce4b6 | 2014-05-16 17:22:51 +0000 | [diff] [blame] | 296 | static void stretch_image(void* dst, |
| 297 | int dstW, |
| 298 | int dstH, |
| commit-bot@chromium.org | f9bd04f | 2014-05-29 19:26:48 +0000 | [diff] [blame] | 299 | const void* src, |
| commit-bot@chromium.org | b0ce4b6 | 2014-05-16 17:22:51 +0000 | [diff] [blame] | 300 | int srcW, |
| 301 | int srcH, |
| 302 | size_t bpp) { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 303 | SkFixed dx = (srcW << 16) / dstW; |
| 304 | SkFixed dy = (srcH << 16) / dstH; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 305 | |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 306 | SkFixed y = dy >> 1; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 307 | |
| robertphillips@google.com | 8b16931 | 2013-10-15 17:47:36 +0000 | [diff] [blame] | 308 | size_t dstXLimit = dstW*bpp; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 309 | for (int j = 0; j < dstH; ++j) { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 310 | SkFixed x = dx >> 1; |
| commit-bot@chromium.org | f9bd04f | 2014-05-29 19:26:48 +0000 | [diff] [blame] | 311 | const uint8_t* srcRow = reinterpret_cast<const uint8_t *>(src) + (y>>16)*srcW*bpp; |
| 312 | uint8_t* dstRow = reinterpret_cast<uint8_t *>(dst) + j*dstW*bpp; |
| robertphillips@google.com | 8b16931 | 2013-10-15 17:47:36 +0000 | [diff] [blame] | 313 | for (size_t i = 0; i < dstXLimit; i += bpp) { |
| commit-bot@chromium.org | f9bd04f | 2014-05-29 19:26:48 +0000 | [diff] [blame] | 314 | memcpy(dstRow + i, srcRow + (x>>16)*bpp, bpp); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 315 | x += dx; |
| 316 | } |
| 317 | y += dy; |
| 318 | } |
| 319 | } |
| 320 | |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 321 | namespace { |
| 322 | |
| 323 | // position + local coordinate |
| 324 | extern const GrVertexAttrib gVertexAttribs[] = { |
| 325 | {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding}, |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 326 | {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding} |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 327 | }; |
| 328 | |
| 329 | }; |
| 330 | |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 331 | // 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] | 332 | // the current hardware. Resize the texture to be a POT |
| 333 | GrTexture* GrContext::createResizedTexture(const GrTextureDesc& desc, |
| bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 334 | const GrCacheID& cacheID, |
| commit-bot@chromium.org | f9bd04f | 2014-05-29 19:26:48 +0000 | [diff] [blame] | 335 | const void* srcData, |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 336 | size_t rowBytes, |
| humper@google.com | b86add1 | 2013-07-25 18:49:07 +0000 | [diff] [blame] | 337 | bool filter) { |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 338 | SkAutoTUnref<GrTexture> clampedTexture(this->findAndRefTexture(desc, cacheID, NULL)); |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 339 | if (NULL == clampedTexture) { |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 340 | clampedTexture.reset(this->createTexture(NULL, desc, cacheID, srcData, rowBytes)); |
| robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 341 | |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 342 | if (NULL == clampedTexture) { |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 343 | return NULL; |
| 344 | } |
| 345 | } |
| robertphillips@google.com | 0d25eef | 2012-09-11 21:25:51 +0000 | [diff] [blame] | 346 | |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 347 | GrTextureDesc rtDesc = desc; |
| 348 | rtDesc.fFlags = rtDesc.fFlags | |
| 349 | kRenderTarget_GrTextureFlagBit | |
| 350 | kNoStencil_GrTextureFlagBit; |
| commit-bot@chromium.org | 5898dce | 2013-09-18 18:52:16 +0000 | [diff] [blame] | 351 | rtDesc.fWidth = GrNextPow2(desc.fWidth); |
| 352 | rtDesc.fHeight = GrNextPow2(desc.fHeight); |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 353 | |
| 354 | GrTexture* texture = fGpu->createTexture(rtDesc, NULL, 0); |
| 355 | |
| 356 | if (NULL != texture) { |
| 357 | GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit); |
| 358 | GrDrawState* drawState = fGpu->drawState(); |
| 359 | drawState->setRenderTarget(texture->asRenderTarget()); |
| 360 | |
| 361 | // if filtering is not desired then we want to ensure all |
| 362 | // texels in the resampled image are copies of texels from |
| 363 | // the original. |
| humper@google.com | b86add1 | 2013-07-25 18:49:07 +0000 | [diff] [blame] | 364 | GrTextureParams params(SkShader::kClamp_TileMode, filter ? GrTextureParams::kBilerp_FilterMode : |
| 365 | GrTextureParams::kNone_FilterMode); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 366 | drawState->addColorTextureEffect(clampedTexture, SkMatrix::I(), params); |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 367 | |
| djsollen | ea81ced | 2014-08-27 13:07:34 -0700 | [diff] [blame] | 368 | drawState->setVertexAttribs<gVertexAttribs>(SK_ARRAY_COUNT(gVertexAttribs)); |
| jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 369 | |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 370 | GrDrawTarget::AutoReleaseGeometry arg(fGpu, 4, 0); |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 371 | |
| 372 | if (arg.succeeded()) { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 373 | SkPoint* verts = (SkPoint*) arg.vertices(); |
| 374 | verts[0].setIRectFan(0, 0, texture->width(), texture->height(), 2 * sizeof(SkPoint)); |
| 375 | verts[1].setIRectFan(0, 0, 1, 1, 2 * sizeof(SkPoint)); |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 376 | fGpu->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4); |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 377 | } |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 378 | } else { |
| 379 | // TODO: Our CPU stretch doesn't filter. But we create separate |
| bsalomon@google.com | 08283af | 2012-10-26 13:01:20 +0000 | [diff] [blame] | 380 | // stretched textures when the texture params is either filtered or |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 381 | // not. Either implement filtered stretch blit on CPU or just create |
| 382 | // one when FBO case fails. |
| 383 | |
| 384 | rtDesc.fFlags = kNone_GrTextureFlags; |
| 385 | // no longer need to clamp at min RT size. |
| 386 | rtDesc.fWidth = GrNextPow2(desc.fWidth); |
| 387 | rtDesc.fHeight = GrNextPow2(desc.fHeight); |
| commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 388 | |
| 389 | // We shouldn't be resizing a compressed texture. |
| 390 | SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig)); |
| 391 | |
| robertphillips@google.com | 8b16931 | 2013-10-15 17:47:36 +0000 | [diff] [blame] | 392 | size_t bpp = GrBytesPerPixel(desc.fConfig); |
| george | b62508b | 2014-08-12 18:00:47 -0700 | [diff] [blame] | 393 | GrAutoMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight); |
| commit-bot@chromium.org | b0ce4b6 | 2014-05-16 17:22:51 +0000 | [diff] [blame] | 394 | stretch_image(stretchedPixels.get(), rtDesc.fWidth, rtDesc.fHeight, |
| 395 | srcData, desc.fWidth, desc.fHeight, bpp); |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 396 | |
| 397 | size_t stretchedRowBytes = rtDesc.fWidth * bpp; |
| 398 | |
| commit-bot@chromium.org | b0ce4b6 | 2014-05-16 17:22:51 +0000 | [diff] [blame] | 399 | texture = fGpu->createTexture(rtDesc, stretchedPixels.get(), stretchedRowBytes); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 400 | SkASSERT(NULL != texture); |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 401 | } |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 402 | |
| 403 | return texture; |
| 404 | } |
| 405 | |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 406 | GrTexture* GrContext::createTexture(const GrTextureParams* params, |
| 407 | const GrTextureDesc& desc, |
| 408 | const GrCacheID& cacheID, |
| commit-bot@chromium.org | f9bd04f | 2014-05-29 19:26:48 +0000 | [diff] [blame] | 409 | const void* srcData, |
| commit-bot@chromium.org | 50a3043 | 2013-10-24 17:44:27 +0000 | [diff] [blame] | 410 | size_t rowBytes, |
| 411 | GrResourceKey* cacheKey) { |
| commit-bot@chromium.org | e49157f | 2014-05-09 20:46:48 +0000 | [diff] [blame] | 412 | GrResourceKey resourceKey = GrTextureImpl::ComputeKey(fGpu, params, desc, cacheID); |
| robertphillips@google.com | a1e5795 | 2012-06-04 20:05:28 +0000 | [diff] [blame] | 413 | |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 414 | GrTexture* texture; |
| commit-bot@chromium.org | e49157f | 2014-05-09 20:46:48 +0000 | [diff] [blame] | 415 | if (GrTextureImpl::NeedsResizing(resourceKey)) { |
| krajcevski | 9c0e629 | 2014-06-02 07:38:14 -0700 | [diff] [blame] | 416 | // We do not know how to resize compressed textures. |
| 417 | SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig)); |
| 418 | |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 419 | texture = this->createResizedTexture(desc, cacheID, |
| 420 | srcData, rowBytes, |
| commit-bot@chromium.org | e49157f | 2014-05-09 20:46:48 +0000 | [diff] [blame] | 421 | GrTextureImpl::NeedsBilerp(resourceKey)); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 422 | } else { |
| krajcevski | 9c0e629 | 2014-06-02 07:38:14 -0700 | [diff] [blame] | 423 | texture = fGpu->createTexture(desc, srcData, rowBytes); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 424 | } |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 425 | |
| 426 | if (NULL != texture) { |
| robertphillips@google.com | 1622a6d | 2013-07-18 17:11:45 +0000 | [diff] [blame] | 427 | // Adding a resource could put us overbudget. Try to free up the |
| 428 | // necessary space before adding it. |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 429 | fResourceCache->purgeAsNeeded(1, texture->gpuMemorySize()); |
| 430 | fResourceCache->addResource(resourceKey, texture); |
| commit-bot@chromium.org | 50a3043 | 2013-10-24 17:44:27 +0000 | [diff] [blame] | 431 | |
| 432 | if (NULL != cacheKey) { |
| 433 | *cacheKey = resourceKey; |
| 434 | } |
| robertphillips@google.com | 3319f33 | 2012-08-13 18:00:36 +0000 | [diff] [blame] | 435 | } |
| 436 | |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 437 | return texture; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 438 | } |
| 439 | |
| skia.committer@gmail.com | 1f3c738 | 2013-07-20 07:00:58 +0000 | [diff] [blame] | 440 | static GrTexture* create_scratch_texture(GrGpu* gpu, |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 441 | GrResourceCache* resourceCache, |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 442 | const GrTextureDesc& desc) { |
| 443 | GrTexture* texture = gpu->createTexture(desc, NULL, 0); |
| 444 | if (NULL != texture) { |
| commit-bot@chromium.org | e49157f | 2014-05-09 20:46:48 +0000 | [diff] [blame] | 445 | GrResourceKey key = GrTextureImpl::ComputeScratchKey(texture->desc()); |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 446 | // Adding a resource could put us overbudget. Try to free up the |
| 447 | // necessary space before adding it. |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 448 | resourceCache->purgeAsNeeded(1, texture->gpuMemorySize()); |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 449 | // Make the resource exclusive so future 'find' calls don't return it |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 450 | resourceCache->addResource(key, texture, GrResourceCache::kHide_OwnershipFlag); |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 451 | } |
| 452 | return texture; |
| 453 | } |
| robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 454 | |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 455 | GrTexture* GrContext::lockAndRefScratchTexture(const GrTextureDesc& inDesc, ScratchTexMatch match) { |
| 456 | |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 457 | SkASSERT((inDesc.fFlags & kRenderTarget_GrTextureFlagBit) || |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 458 | !(inDesc.fFlags & kNoStencil_GrTextureFlagBit)); |
| 459 | |
| 460 | // Renderable A8 targets are not universally supported (e.g., not on ANGLE) |
| bsalomon@google.com | 8aaac8d | 2013-10-15 14:35:06 +0000 | [diff] [blame] | 461 | SkASSERT(this->isConfigRenderable(kAlpha_8_GrPixelConfig, inDesc.fSampleCnt > 0) || |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 462 | !(inDesc.fFlags & kRenderTarget_GrTextureFlagBit) || |
| 463 | (inDesc.fConfig != kAlpha_8_GrPixelConfig)); |
| 464 | |
| robertphillips@google.com | 2d2e5c4 | 2013-10-30 21:30:43 +0000 | [diff] [blame] | 465 | if (!fGpu->caps()->reuseScratchTextures() && |
| 466 | !(inDesc.fFlags & kRenderTarget_GrTextureFlagBit)) { |
| 467 | // If we're never recycling this texture we can always make it the right size |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 468 | return create_scratch_texture(fGpu, fResourceCache, inDesc); |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | GrTextureDesc desc = inDesc; |
| rileya@google.com | 2afb8ec | 2012-08-23 14:08:57 +0000 | [diff] [blame] | 472 | |
| bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 473 | if (kApprox_ScratchTexMatch == match) { |
| bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 474 | // bin by pow2 with a reasonable min |
| bsalomon@google.com | 40db6dc | 2013-03-06 16:35:49 +0000 | [diff] [blame] | 475 | static const int MIN_SIZE = 16; |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 476 | desc.fWidth = SkTMax(MIN_SIZE, GrNextPow2(desc.fWidth)); |
| 477 | desc.fHeight = SkTMax(MIN_SIZE, GrNextPow2(desc.fHeight)); |
| bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 478 | } |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 479 | |
| bsalomon | 6d3fe02 | 2014-07-25 08:35:45 -0700 | [diff] [blame] | 480 | GrGpuResource* resource = NULL; |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 481 | int origWidth = desc.fWidth; |
| 482 | int origHeight = desc.fHeight; |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 483 | |
| 484 | do { |
| commit-bot@chromium.org | e49157f | 2014-05-09 20:46:48 +0000 | [diff] [blame] | 485 | GrResourceKey key = GrTextureImpl::ComputeScratchKey(desc); |
| robertphillips@google.com | 209a114 | 2012-10-31 12:25:21 +0000 | [diff] [blame] | 486 | // Ensure we have exclusive access to the texture so future 'find' calls don't return it |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 487 | resource = fResourceCache->find(key, GrResourceCache::kHide_OwnershipFlag); |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 488 | if (NULL != resource) { |
| 489 | resource->ref(); |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 490 | break; |
| 491 | } |
| bsalomon@google.com | 95ed55a | 2013-01-24 14:46:47 +0000 | [diff] [blame] | 492 | if (kExact_ScratchTexMatch == match) { |
| 493 | break; |
| 494 | } |
| bsalomon@google.com | 40db6dc | 2013-03-06 16:35:49 +0000 | [diff] [blame] | 495 | // 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] | 496 | |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 497 | // 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] | 498 | // situations where no RT is needed; doing otherwise can confuse the video driver and |
| 499 | // cause significant performance problems in some cases. |
| 500 | if (desc.fFlags & kNoStencil_GrTextureFlagBit) { |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 501 | desc.fFlags = desc.fFlags & ~kNoStencil_GrTextureFlagBit; |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 502 | } else { |
| 503 | break; |
| 504 | } |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 505 | |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 506 | } while (true); |
| 507 | |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 508 | if (NULL == resource) { |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 509 | desc.fFlags = inDesc.fFlags; |
| 510 | desc.fWidth = origWidth; |
| 511 | desc.fHeight = origHeight; |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 512 | resource = create_scratch_texture(fGpu, fResourceCache, desc); |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 513 | } |
| 514 | |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 515 | return static_cast<GrTexture*>(resource); |
| bsalomon@google.com | b5b3168 | 2011-06-16 18:05:35 +0000 | [diff] [blame] | 516 | } |
| 517 | |
| robertphillips@google.com | 15c0fea | 2012-06-22 12:41:43 +0000 | [diff] [blame] | 518 | void GrContext::addExistingTextureToCache(GrTexture* texture) { |
| 519 | |
| 520 | if (NULL == texture) { |
| 521 | return; |
| 522 | } |
| 523 | |
| robertphillips@google.com | 521eaf8 | 2012-08-22 11:03:19 +0000 | [diff] [blame] | 524 | // This texture should already have a cache entry since it was once |
| 525 | // attached |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 526 | SkASSERT(NULL != texture->getCacheEntry()); |
| robertphillips@google.com | 9c2ea84 | 2012-08-13 17:47:59 +0000 | [diff] [blame] | 527 | |
| robertphillips@google.com | 521eaf8 | 2012-08-22 11:03:19 +0000 | [diff] [blame] | 528 | // Conceptually, the cache entry is going to assume responsibility |
| robertphillips@google.com | 9ef0426 | 2013-10-29 14:06:15 +0000 | [diff] [blame] | 529 | // for the creation ref. Assert refcnt == 1. |
| bsalomon | 944bcf0 | 2014-07-29 08:01:52 -0700 | [diff] [blame] | 530 | // Except that this also gets called when the texture is prematurely |
| 531 | // abandoned. In that case the ref count may be > 1. |
| 532 | // SkASSERT(texture->unique()); |
| robertphillips@google.com | 521eaf8 | 2012-08-22 11:03:19 +0000 | [diff] [blame] | 533 | |
| robertphillips@google.com | 2d2e5c4 | 2013-10-30 21:30:43 +0000 | [diff] [blame] | 534 | if (fGpu->caps()->reuseScratchTextures() || NULL != texture->asRenderTarget()) { |
| robertphillips@google.com | 9ef0426 | 2013-10-29 14:06:15 +0000 | [diff] [blame] | 535 | // Since this texture came from an AutoScratchTexture it should |
| 536 | // still be in the exclusive pile. Recycle it. |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 537 | fResourceCache->makeNonExclusive(texture->getCacheEntry()); |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 538 | this->purgeCache(); |
| bsalomon | dcabb05 | 2014-07-21 14:24:01 -0700 | [diff] [blame] | 539 | } else { |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 540 | // When we aren't reusing textures we know this scratch texture |
| 541 | // will never be reused and would be just wasting time in the cache |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 542 | fResourceCache->makeNonExclusive(texture->getCacheEntry()); |
| 543 | fResourceCache->deleteResource(texture->getCacheEntry()); |
| robertphillips@google.com | e4eaea2 | 2013-07-19 16:51:46 +0000 | [diff] [blame] | 544 | } |
| robertphillips@google.com | 15c0fea | 2012-06-22 12:41:43 +0000 | [diff] [blame] | 545 | } |
| 546 | |
| robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 547 | void GrContext::unlockScratchTexture(GrTexture* texture) { |
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 548 | if (texture->wasDestroyed()) { |
| 549 | if (texture->getCacheEntry()->key().isScratch()) { |
| 550 | // This texture was detached from the cache but the cache still had a ref to it but |
| bsalomon | 02e36f2 | 2014-08-22 12:01:46 -0700 | [diff] [blame] | 551 | // not a pointer to it. This will unref the texture and delete its resource cache |
| 552 | // entry. |
| 553 | delete texture->getCacheEntry(); |
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 554 | } |
| 555 | return; |
| 556 | } |
| 557 | |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 558 | ASSERT_OWNED_RESOURCE(texture); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 559 | SkASSERT(NULL != texture->getCacheEntry()); |
| robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 560 | |
| bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 561 | // If this is a scratch texture we detached it from the cache |
| 562 | // while it was locked (to avoid two callers simultaneously getting |
| 563 | // the same texture). |
| bsalomon@google.com | 0797c2c | 2012-12-20 15:13:01 +0000 | [diff] [blame] | 564 | if (texture->getCacheEntry()->key().isScratch()) { |
| robertphillips@google.com | 2d2e5c4 | 2013-10-30 21:30:43 +0000 | [diff] [blame] | 565 | if (fGpu->caps()->reuseScratchTextures() || NULL != texture->asRenderTarget()) { |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 566 | fResourceCache->makeNonExclusive(texture->getCacheEntry()); |
| robertphillips@google.com | 9ef0426 | 2013-10-29 14:06:15 +0000 | [diff] [blame] | 567 | this->purgeCache(); |
| bsalomon | dcabb05 | 2014-07-21 14:24:01 -0700 | [diff] [blame] | 568 | } else if (texture->unique()) { |
| skia.committer@gmail.com | b77f0f4 | 2013-10-30 07:01:56 +0000 | [diff] [blame] | 569 | // Only the cache now knows about this texture. Since we're never |
| 570 | // reusing scratch textures (in this code path) it would just be |
| robertphillips@google.com | 9ef0426 | 2013-10-29 14:06:15 +0000 | [diff] [blame] | 571 | // wasting time sitting in the cache. |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 572 | fResourceCache->makeNonExclusive(texture->getCacheEntry()); |
| 573 | fResourceCache->deleteResource(texture->getCacheEntry()); |
| robertphillips@google.com | 9ef0426 | 2013-10-29 14:06:15 +0000 | [diff] [blame] | 574 | } else { |
| bsalomon | dcabb05 | 2014-07-21 14:24:01 -0700 | [diff] [blame] | 575 | // In this case (there is still a non-cache ref) but we don't really |
| skia.committer@gmail.com | b77f0f4 | 2013-10-30 07:01:56 +0000 | [diff] [blame] | 576 | // want to readd it to the cache (since it will never be reused). |
| robertphillips@google.com | 9ef0426 | 2013-10-29 14:06:15 +0000 | [diff] [blame] | 577 | // Instead, give up the cache's ref and leave the decision up to |
| 578 | // addExistingTextureToCache once its ref count reaches 0. For |
| 579 | // this to work we need to leave it in the exclusive list. |
| commit-bot@chromium.org | e49157f | 2014-05-09 20:46:48 +0000 | [diff] [blame] | 580 | texture->impl()->setFlag((GrTextureFlags) GrTextureImpl::kReturnToCache_FlagBit); |
| robertphillips@google.com | 9ef0426 | 2013-10-29 14:06:15 +0000 | [diff] [blame] | 581 | // Give up the cache's ref to the texture |
| 582 | texture->unref(); |
| 583 | } |
| bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 584 | } |
| robertphillips@google.com | 50a035d | 2012-09-07 19:44:33 +0000 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | void GrContext::purgeCache() { |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 588 | if (NULL != fResourceCache) { |
| 589 | fResourceCache->purgeAsNeeded(); |
| robertphillips@google.com | eb9b3e1 | 2012-09-11 12:50:53 +0000 | [diff] [blame] | 590 | } |
| robertphillips@google.com | 15c0fea | 2012-06-22 12:41:43 +0000 | [diff] [blame] | 591 | } |
| 592 | |
| commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 593 | bool GrContext::OverbudgetCB(void* data) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 594 | SkASSERT(NULL != data); |
| commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 595 | |
| 596 | GrContext* context = reinterpret_cast<GrContext*>(data); |
| 597 | |
| 598 | // Flush the InOrderDrawBuffer to possibly free up some textures |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 599 | context->fFlushToReduceCacheSize = true; |
| commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 600 | |
| commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 601 | return true; |
| 602 | } |
| 603 | |
| 604 | |
| robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 605 | GrTexture* GrContext::createUncachedTexture(const GrTextureDesc& descIn, |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 606 | void* srcData, |
| 607 | size_t rowBytes) { |
| robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 608 | GrTextureDesc descCopy = descIn; |
| robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 609 | return fGpu->createTexture(descCopy, srcData, rowBytes); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 610 | } |
| 611 | |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 612 | void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const { |
| 613 | fResourceCache->getLimits(maxTextures, maxTextureBytes); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 614 | } |
| 615 | |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 616 | void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) { |
| 617 | fResourceCache->setLimits(maxTextures, maxTextureBytes); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 618 | } |
| 619 | |
| bsalomon@google.com | 9195836 | 2011-06-13 17:58:13 +0000 | [diff] [blame] | 620 | int GrContext::getMaxTextureSize() const { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 621 | return SkTMin(fGpu->caps()->maxTextureSize(), fMaxTextureSizeOverride); |
| bsalomon@google.com | 9195836 | 2011-06-13 17:58:13 +0000 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | int GrContext::getMaxRenderTargetSize() const { |
| bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 625 | return fGpu->caps()->maxRenderTargetSize(); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 626 | } |
| 627 | |
| bsalomon@google.com | 8a70eef | 2013-03-19 13:58:55 +0000 | [diff] [blame] | 628 | int GrContext::getMaxSampleCount() const { |
| bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 629 | return fGpu->caps()->maxSampleCount(); |
| bsalomon@google.com | 8a70eef | 2013-03-19 13:58:55 +0000 | [diff] [blame] | 630 | } |
| 631 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 632 | /////////////////////////////////////////////////////////////////////////////// |
| 633 | |
| bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 634 | GrTexture* GrContext::wrapBackendTexture(const GrBackendTextureDesc& desc) { |
| 635 | return fGpu->wrapBackendTexture(desc); |
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 636 | } |
| 637 | |
| bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 638 | GrRenderTarget* GrContext::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) { |
| 639 | return fGpu->wrapBackendRenderTarget(desc); |
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 640 | } |
| 641 | |
| bsalomon@google.com | 5877ffd | 2011-04-11 17:58:48 +0000 | [diff] [blame] | 642 | /////////////////////////////////////////////////////////////////////////////// |
| 643 | |
| bsalomon@google.com | b867099 | 2012-07-25 21:27:09 +0000 | [diff] [blame] | 644 | bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params, |
| bsalomon@google.com | 1f221a7 | 2011-08-23 20:54:07 +0000 | [diff] [blame] | 645 | int width, int height) const { |
| bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 646 | const GrDrawTargetCaps* caps = fGpu->caps(); |
| commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 647 | if (!caps->isConfigTexturable(kIndex_8_GrPixelConfig)) { |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 648 | return false; |
| 649 | } |
| 650 | |
| tfarina | f9dae78 | 2014-06-06 06:35:28 -0700 | [diff] [blame] | 651 | bool isPow2 = SkIsPow2(width) && SkIsPow2(height); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 652 | |
| 653 | if (!isPow2) { |
| bsalomon@google.com | b867099 | 2012-07-25 21:27:09 +0000 | [diff] [blame] | 654 | bool tiled = NULL != params && params->isTiled(); |
| bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 655 | if (tiled && !caps->npotTextureTileSupport()) { |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 656 | return false; |
| 657 | } |
| 658 | } |
| 659 | return true; |
| 660 | } |
| 661 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 662 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 663 | //////////////////////////////////////////////////////////////////////////////// |
| 664 | |
| commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 665 | void GrContext::clear(const SkIRect* rect, |
| bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 666 | const GrColor color, |
| robertphillips@google.com | 56ce48a | 2013-10-31 21:44:25 +0000 | [diff] [blame] | 667 | bool canIgnoreRect, |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 668 | GrRenderTarget* renderTarget) { |
| 669 | ASSERT_OWNED_RESOURCE(renderTarget); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 670 | AutoRestoreEffects are; |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 671 | AutoCheckFlush acf(this); |
| egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 672 | GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::clear", this); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 673 | GrDrawTarget* target = this->prepareToDraw(NULL, BUFFERED_DRAW, &are, &acf); |
| 674 | if (NULL == target) { |
| 675 | return; |
| 676 | } |
| 677 | target->clear(rect, color, canIgnoreRect, renderTarget); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 678 | } |
| 679 | |
| bsalomon@google.com | 5dc26b9 | 2012-10-11 19:32:32 +0000 | [diff] [blame] | 680 | void GrContext::drawPaint(const GrPaint& origPaint) { |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 681 | // set rect to be big enough to fill the space, but not super-huge, so we |
| 682 | // don't overflow fixed-point implementations |
| commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 683 | SkRect r; |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 684 | r.setLTRB(0, 0, |
| bsalomon@google.com | 8171288 | 2012-11-01 17:12:34 +0000 | [diff] [blame] | 685 | SkIntToScalar(getRenderTarget()->width()), |
| 686 | SkIntToScalar(getRenderTarget()->height())); |
| bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 687 | SkMatrix inverse; |
| bsalomon@google.com | 5dc26b9 | 2012-10-11 19:32:32 +0000 | [diff] [blame] | 688 | SkTCopyOnFirstWrite<GrPaint> paint(origPaint); |
| robertphillips@google.com | fea85ac | 2012-07-11 18:53:23 +0000 | [diff] [blame] | 689 | AutoMatrix am; |
| egdaniel | d78a168 | 2014-07-09 10:41:26 -0700 | [diff] [blame] | 690 | GR_CREATE_TRACE_MARKER_CONTEXT("GrContext::drawPaint", this); |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 691 | |
| bsalomon@google.com | 4f83be8 | 2011-09-12 13:52:51 +0000 | [diff] [blame] | 692 | // We attempt to map r by the inverse matrix and draw that. mapRect will |
| 693 | // map the four corners and bound them with a new rect. This will not |
| 694 | // produce a correct result for some perspective matrices. |
| bsalomon@google.com | 8c2fe99 | 2011-09-13 15:27:18 +0000 | [diff] [blame] | 695 | if (!this->getMatrix().hasPerspective()) { |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 696 | if (!fViewMatrix.invert(&inverse)) { |
| bsalomon@google.com | e3d3216 | 2012-07-20 13:37:06 +0000 | [diff] [blame] | 697 | GrPrintf("Could not invert matrix\n"); |
| bsalomon@google.com | 8c2fe99 | 2011-09-13 15:27:18 +0000 | [diff] [blame] | 698 | return; |
| 699 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 700 | inverse.mapRect(&r); |
| 701 | } else { |
| bsalomon@google.com | 3cbaa2d | 2012-10-12 14:51:52 +0000 | [diff] [blame] | 702 | if (!am.setIdentity(this, paint.writable())) { |
| 703 | GrPrintf("Could not invert matrix\n"); |
| 704 | return; |
| bsalomon@google.com | 8c2fe99 | 2011-09-13 15:27:18 +0000 | [diff] [blame] | 705 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 706 | } |
| bsalomon@google.com | 4f83be8 | 2011-09-12 13:52:51 +0000 | [diff] [blame] | 707 | // by definition this fills the entire clip, no need for AA |
| bsalomon@google.com | 5dc26b9 | 2012-10-11 19:32:32 +0000 | [diff] [blame] | 708 | if (paint->isAntiAlias()) { |
| 709 | paint.writable()->setAntiAlias(false); |
| bsalomon@google.com | 4f83be8 | 2011-09-12 13:52:51 +0000 | [diff] [blame] | 710 | } |
| bsalomon@google.com | 5dc26b9 | 2012-10-11 19:32:32 +0000 | [diff] [blame] | 711 | this->drawRect(*paint, r); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 712 | } |
| 713 | |
| commit-bot@chromium.org | 03e3e89 | 2013-10-02 18:19:17 +0000 | [diff] [blame] | 714 | #ifdef SK_DEVELOPER |
| 715 | void GrContext::dumpFontCache() const { |
| 716 | fFontCache->dump(); |
| 717 | } |
| 718 | #endif |
| 719 | |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 720 | //////////////////////////////////////////////////////////////////////////////// |
| 721 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 722 | /* create a triangle strip that strokes the specified triangle. There are 8 |
| 723 | unique vertices, but we repreat the last 2 to close up. Alternatively we |
| 724 | could use an indices array, and then only send 8 verts, but not sure that |
| 725 | would be faster. |
| 726 | */ |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 727 | static void setStrokeRectStrip(SkPoint verts[10], SkRect rect, |
| bsalomon@google.com | 8171288 | 2012-11-01 17:12:34 +0000 | [diff] [blame] | 728 | SkScalar width) { |
| 729 | const SkScalar rad = SkScalarHalf(width); |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 730 | rect.sort(); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 731 | |
| 732 | verts[0].set(rect.fLeft + rad, rect.fTop + rad); |
| 733 | verts[1].set(rect.fLeft - rad, rect.fTop - rad); |
| 734 | verts[2].set(rect.fRight - rad, rect.fTop + rad); |
| 735 | verts[3].set(rect.fRight + rad, rect.fTop - rad); |
| 736 | verts[4].set(rect.fRight - rad, rect.fBottom - rad); |
| 737 | verts[5].set(rect.fRight + rad, rect.fBottom + rad); |
| 738 | verts[6].set(rect.fLeft + rad, rect.fBottom - rad); |
| 739 | verts[7].set(rect.fLeft - rad, rect.fBottom + rad); |
| 740 | verts[8] = verts[0]; |
| 741 | verts[9] = verts[1]; |
| 742 | } |
| 743 | |
| bsalomon | c30aaa0 | 2014-08-13 07:15:29 -0700 | [diff] [blame] | 744 | static inline bool is_irect(const SkRect& r) { |
| 745 | return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) && |
| 746 | SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom); |
| 747 | } |
| 748 | |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 749 | static bool apply_aa_to_rect(GrDrawTarget* target, |
| commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 750 | const SkRect& rect, |
| robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 751 | SkScalar strokeWidth, |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 752 | const SkMatrix& combinedMatrix, |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 753 | SkRect* devBoundRect) { |
| 754 | if (!target->getDrawState().canTweakAlphaForCoverage() && |
| 755 | target->shouldDisableCoverageAAForBlend()) { |
| commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 756 | #ifdef SK_DEBUG |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 757 | //GrPrintf("Turning off AA to correctly apply blend.\n"); |
| bsalomon@google.com | 1983f39 | 2011-10-10 15:17:58 +0000 | [diff] [blame] | 758 | #endif |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 759 | return false; |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 760 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 761 | const GrDrawState& drawState = target->getDrawState(); |
| 762 | if (drawState.getRenderTarget()->isMultisampled()) { |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 763 | return false; |
| 764 | } |
| 765 | |
| robertphillips@google.com | 4b140b5 | 2013-05-02 17:13:13 +0000 | [diff] [blame] | 766 | #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] | 767 | if (strokeWidth >= 0) { |
| 768 | #endif |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 769 | if (!combinedMatrix.preservesAxisAlignment()) { |
| robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 770 | return false; |
| 771 | } |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 772 | |
| robertphillips@google.com | 4b140b5 | 2013-05-02 17:13:13 +0000 | [diff] [blame] | 773 | #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] | 774 | } else { |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 775 | if (!combinedMatrix.preservesRightAngles()) { |
| robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 776 | return false; |
| 777 | } |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 778 | } |
| robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 779 | #endif |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 780 | |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 781 | combinedMatrix.mapRect(devBoundRect, rect); |
| bsalomon | c30aaa0 | 2014-08-13 07:15:29 -0700 | [diff] [blame] | 782 | if (strokeWidth < 0) { |
| 783 | return !is_irect(*devBoundRect); |
| 784 | } |
| robertphillips@google.com | 28ac96e | 2013-05-13 13:38:35 +0000 | [diff] [blame] | 785 | |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 786 | return true; |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 787 | } |
| 788 | |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 789 | static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) { |
| 790 | return point.fX >= rect.fLeft && point.fX <= rect.fRight && |
| 791 | point.fY >= rect.fTop && point.fY <= rect.fBottom; |
| 792 | } |
| 793 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 794 | void GrContext::drawRect(const GrPaint& paint, |
| commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 795 | const SkRect& rect, |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 796 | const GrStrokeInfo* strokeInfo) { |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 797 | if (NULL != strokeInfo && strokeInfo->isDashed()) { |
| 798 | SkPath path; |
| 799 | path.addRect(rect); |
| 800 | this->drawPath(paint, path, *strokeInfo); |
| 801 | return; |
| 802 | } |
| 803 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 804 | AutoRestoreEffects are; |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 805 | AutoCheckFlush acf(this); |
| 806 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 807 | if (NULL == target) { |
| 808 | return; |
| 809 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 810 | |
| commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 811 | GR_CREATE_TRACE_MARKER("GrContext::drawRect", target); |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 812 | SkScalar width = NULL == strokeInfo ? -1 : strokeInfo->getStrokeRec().getWidth(); |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 813 | SkMatrix matrix = target->drawState()->getViewMatrix(); |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 814 | |
| 815 | // Check if this is a full RT draw and can be replaced with a clear. We don't bother checking |
| 816 | // cases where the RT is fully inside a stroke. |
| 817 | if (width < 0) { |
| 818 | SkRect rtRect; |
| 819 | target->getDrawState().getRenderTarget()->getBoundsRect(&rtRect); |
| 820 | SkRect clipSpaceRTRect = rtRect; |
| 821 | bool checkClip = false; |
| 822 | if (NULL != this->getClip()) { |
| 823 | checkClip = true; |
| 824 | clipSpaceRTRect.offset(SkIntToScalar(this->getClip()->fOrigin.fX), |
| 825 | SkIntToScalar(this->getClip()->fOrigin.fY)); |
| 826 | } |
| 827 | // Does the clip contain the entire RT? |
| 828 | if (!checkClip || target->getClip()->fClipStack->quickContains(clipSpaceRTRect)) { |
| 829 | SkMatrix invM; |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 830 | if (!matrix.invert(&invM)) { |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 831 | return; |
| 832 | } |
| 833 | // Does the rect bound the RT? |
| 834 | SkPoint srcSpaceRTQuad[4]; |
| 835 | invM.mapRectToQuad(srcSpaceRTQuad, rtRect); |
| 836 | if (rect_contains_inclusive(rect, srcSpaceRTQuad[0]) && |
| 837 | rect_contains_inclusive(rect, srcSpaceRTQuad[1]) && |
| 838 | rect_contains_inclusive(rect, srcSpaceRTQuad[2]) && |
| 839 | rect_contains_inclusive(rect, srcSpaceRTQuad[3])) { |
| 840 | // Will it blend? |
| 841 | GrColor clearColor; |
| 842 | if (paint.isOpaqueAndConstantColor(&clearColor)) { |
| robertphillips@google.com | 56ce48a | 2013-10-31 21:44:25 +0000 | [diff] [blame] | 843 | target->clear(NULL, clearColor, true); |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 844 | return; |
| 845 | } |
| 846 | } |
| 847 | } |
| 848 | } |
| 849 | |
| 850 | SkRect devBoundRect; |
| bsalomon@google.com | c7448ce | 2012-10-05 19:04:13 +0000 | [diff] [blame] | 851 | bool needAA = paint.isAntiAlias() && |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 852 | !target->getDrawState().getRenderTarget()->isMultisampled(); |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 853 | bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix, &devBoundRect); |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 854 | |
| 855 | const SkStrokeRec& strokeRec = strokeInfo->getStrokeRec(); |
| 856 | |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 857 | if (doAA) { |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 858 | GrDrawState::AutoViewMatrixRestore avmr; |
| 859 | if (!avmr.setIdentity(target->drawState())) { |
| bsalomon@google.com | e3d3216 | 2012-07-20 13:37:06 +0000 | [diff] [blame] | 860 | return; |
| 861 | } |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 862 | if (width >= 0) { |
| commit-bot@chromium.org | 6006d0f | 2013-11-06 10:08:21 +0000 | [diff] [blame] | 863 | fAARectRenderer->strokeAARect(this->getGpu(), target, rect, |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 864 | matrix, devBoundRect, |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 865 | strokeRec); |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 866 | } else { |
| robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 867 | // filled AA rect |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 868 | fAARectRenderer->fillAARect(this->getGpu(), target, |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 869 | rect, matrix, devBoundRect); |
| bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 870 | } |
| 871 | return; |
| 872 | } |
| 873 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 874 | if (width >= 0) { |
| 875 | // TODO: consider making static vertex buffers for these cases. |
| bsalomon@google.com | 6438695 | 2013-02-08 21:22:44 +0000 | [diff] [blame] | 876 | // Hairline could be done by just adding closing vertex to |
| 877 | // unitSquareVertexBuffer() |
| bsalomon@google.com | 26c2d0a | 2011-05-17 20:15:30 +0000 | [diff] [blame] | 878 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 879 | static const int worstCaseVertCount = 10; |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 880 | target->drawState()->setDefaultVertexAttribs(); |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 881 | GrDrawTarget::AutoReleaseGeometry geo(target, worstCaseVertCount, 0); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 882 | |
| 883 | if (!geo.succeeded()) { |
| bsalomon@google.com | 6513cd0 | 2011-08-05 20:12:30 +0000 | [diff] [blame] | 884 | GrPrintf("Failed to get space for vertices!\n"); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 885 | return; |
| 886 | } |
| 887 | |
| 888 | GrPrimitiveType primType; |
| 889 | int vertCount; |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 890 | SkPoint* vertex = geo.positions(); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 891 | |
| 892 | if (width > 0) { |
| 893 | vertCount = 10; |
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 894 | primType = kTriangleStrip_GrPrimitiveType; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 895 | setStrokeRectStrip(vertex, rect, width); |
| 896 | } else { |
| 897 | // hairline |
| 898 | vertCount = 5; |
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 899 | primType = kLineStrip_GrPrimitiveType; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 900 | vertex[0].set(rect.fLeft, rect.fTop); |
| 901 | vertex[1].set(rect.fRight, rect.fTop); |
| 902 | vertex[2].set(rect.fRight, rect.fBottom); |
| 903 | vertex[3].set(rect.fLeft, rect.fBottom); |
| 904 | vertex[4].set(rect.fLeft, rect.fTop); |
| 905 | } |
| 906 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 907 | target->drawNonIndexed(primType, 0, vertCount); |
| 908 | } else { |
| robertphillips@google.com | df3695e | 2013-04-09 14:01:44 +0000 | [diff] [blame] | 909 | // filled BW rect |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 910 | target->drawSimpleRect(rect); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 911 | } |
| 912 | } |
| 913 | |
| 914 | void GrContext::drawRectToRect(const GrPaint& paint, |
| commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 915 | const SkRect& dstRect, |
| 916 | const SkRect& localRect, |
| bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 917 | const SkMatrix* localMatrix) { |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 918 | AutoRestoreEffects are; |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 919 | AutoCheckFlush acf(this); |
| 920 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 921 | if (NULL == target) { |
| 922 | return; |
| 923 | } |
| bsalomon@google.com | 6438695 | 2013-02-08 21:22:44 +0000 | [diff] [blame] | 924 | |
| commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 925 | GR_CREATE_TRACE_MARKER("GrContext::drawRectToRect", target); |
| 926 | |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 927 | target->drawRect(dstRect, &localRect, localMatrix); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 928 | } |
| 929 | |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 930 | namespace { |
| 931 | |
| 932 | extern const GrVertexAttrib gPosUVColorAttribs[] = { |
| 933 | {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding }, |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 934 | {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding }, |
| 935 | {kVec4ub_GrVertexAttribType, 2*sizeof(SkPoint), kColor_GrVertexAttribBinding} |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 936 | }; |
| 937 | |
| 938 | extern const GrVertexAttrib gPosColorAttribs[] = { |
| 939 | {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding}, |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 940 | {kVec4ub_GrVertexAttribType, sizeof(SkPoint), kColor_GrVertexAttribBinding}, |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 941 | }; |
| 942 | |
| 943 | static void set_vertex_attributes(GrDrawState* drawState, |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 944 | const SkPoint* texCoords, |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 945 | const GrColor* colors, |
| 946 | int* colorOffset, |
| 947 | int* texOffset) { |
| 948 | *texOffset = -1; |
| 949 | *colorOffset = -1; |
| 950 | |
| 951 | if (NULL != texCoords && NULL != colors) { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 952 | *texOffset = sizeof(SkPoint); |
| 953 | *colorOffset = 2*sizeof(SkPoint); |
| djsollen | ea81ced | 2014-08-27 13:07:34 -0700 | [diff] [blame] | 954 | drawState->setVertexAttribs<gPosUVColorAttribs>(3); |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 955 | } else if (NULL != texCoords) { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 956 | *texOffset = sizeof(SkPoint); |
| djsollen | ea81ced | 2014-08-27 13:07:34 -0700 | [diff] [blame] | 957 | drawState->setVertexAttribs<gPosUVColorAttribs>(2); |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 958 | } else if (NULL != colors) { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 959 | *colorOffset = sizeof(SkPoint); |
| djsollen | ea81ced | 2014-08-27 13:07:34 -0700 | [diff] [blame] | 960 | drawState->setVertexAttribs<gPosColorAttribs>(2); |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 961 | } else { |
| djsollen | ea81ced | 2014-08-27 13:07:34 -0700 | [diff] [blame] | 962 | drawState->setVertexAttribs<gPosColorAttribs>(1); |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 963 | } |
| 964 | } |
| 965 | |
| 966 | }; |
| 967 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 968 | void GrContext::drawVertices(const GrPaint& paint, |
| 969 | GrPrimitiveType primitiveType, |
| 970 | int vertexCount, |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 971 | const SkPoint positions[], |
| 972 | const SkPoint texCoords[], |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 973 | const GrColor colors[], |
| 974 | const uint16_t indices[], |
| 975 | int indexCount) { |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 976 | AutoRestoreEffects are; |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 977 | AutoCheckFlush acf(this); |
| commit-bot@chromium.org | 5a56793 | 2014-01-08 21:26:09 +0000 | [diff] [blame] | 978 | GrDrawTarget::AutoReleaseGeometry geo; // must be inside AutoCheckFlush scope |
| 979 | |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 980 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 981 | if (NULL == target) { |
| 982 | return; |
| 983 | } |
| egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 984 | GrDrawState* drawState = target->drawState(); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 985 | |
| commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 986 | GR_CREATE_TRACE_MARKER("GrContext::drawVertices", target); |
| 987 | |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 988 | int colorOffset = -1, texOffset = -1; |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 989 | set_vertex_attributes(drawState, texCoords, colors, &colorOffset, &texOffset); |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 990 | |
| djsollen | ea81ced | 2014-08-27 13:07:34 -0700 | [diff] [blame] | 991 | size_t vertexSize = drawState->getVertexSize(); |
| 992 | if (sizeof(SkPoint) != vertexSize) { |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 993 | if (!geo.set(target, vertexCount, 0)) { |
| bsalomon@google.com | 6513cd0 | 2011-08-05 20:12:30 +0000 | [diff] [blame] | 994 | GrPrintf("Failed to get space for vertices!\n"); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 995 | return; |
| 996 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 997 | void* curVertex = geo.vertices(); |
| 998 | |
| 999 | for (int i = 0; i < vertexCount; ++i) { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 1000 | *((SkPoint*)curVertex) = positions[i]; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1001 | |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 1002 | if (texOffset >= 0) { |
| commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 1003 | *(SkPoint*)((intptr_t)curVertex + texOffset) = texCoords[i]; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1004 | } |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 1005 | if (colorOffset >= 0) { |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1006 | *(GrColor*)((intptr_t)curVertex + colorOffset) = colors[i]; |
| 1007 | } |
| djsollen | ea81ced | 2014-08-27 13:07:34 -0700 | [diff] [blame] | 1008 | curVertex = (void*)((intptr_t)curVertex + vertexSize); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1009 | } |
| 1010 | } else { |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 1011 | target->setVertexSourceToArray(positions, vertexCount); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1012 | } |
| 1013 | |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1014 | // 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] | 1015 | // management of GrDrawTarget's geometry to avoid copying points per-tile. |
| bsalomon@google.com | a47a48d | 2011-04-26 20:22:11 +0000 | [diff] [blame] | 1016 | |
| bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 1017 | if (NULL != indices) { |
| bsalomon@google.com | 9195836 | 2011-06-13 17:58:13 +0000 | [diff] [blame] | 1018 | target->setIndexSourceToArray(indices, indexCount); |
| bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 1019 | target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount); |
| bsalomon@google.com | 0406b9e | 2013-04-02 21:00:15 +0000 | [diff] [blame] | 1020 | target->resetIndexSource(); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1021 | } else { |
| bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 1022 | target->drawNonIndexed(primitiveType, 0, vertexCount); |
| 1023 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1024 | } |
| 1025 | |
| bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 1026 | /////////////////////////////////////////////////////////////////////////////// |
| bsalomon@google.com | 93c9660 | 2012-04-27 13:05:21 +0000 | [diff] [blame] | 1027 | |
| commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 1028 | void GrContext::drawRRect(const GrPaint& paint, |
| commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 1029 | const SkRRect& rrect, |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1030 | const GrStrokeInfo& strokeInfo) { |
| commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 1031 | if (rrect.isEmpty()) { |
| commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 1032 | return; |
| 1033 | } |
| commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 1034 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1035 | if (strokeInfo.isDashed()) { |
| 1036 | SkPath path; |
| 1037 | path.addRRect(rrect); |
| 1038 | this->drawPath(paint, path, strokeInfo); |
| 1039 | return; |
| 1040 | } |
| 1041 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1042 | AutoRestoreEffects are; |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 1043 | AutoCheckFlush acf(this); |
| 1044 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 1045 | if (NULL == target) { |
| 1046 | return; |
| 1047 | } |
| commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 1048 | |
| commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 1049 | GR_CREATE_TRACE_MARKER("GrContext::drawRRect", target); |
| 1050 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1051 | const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec(); |
| 1052 | |
| 1053 | if (!fOvalRenderer->drawRRect(target, this, paint.isAntiAlias(), rrect, strokeRec)) { |
| commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 1054 | SkPath path; |
| commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 1055 | path.addRRect(rrect); |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1056 | this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo); |
| commit-bot@chromium.org | f2bfd54 | 2013-04-25 15:27:00 +0000 | [diff] [blame] | 1057 | } |
| 1058 | } |
| 1059 | |
| 1060 | /////////////////////////////////////////////////////////////////////////////// |
| 1061 | |
| commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 1062 | void GrContext::drawDRRect(const GrPaint& paint, |
| 1063 | const SkRRect& outer, |
| 1064 | const SkRRect& inner) { |
| 1065 | if (outer.isEmpty()) { |
| 1066 | return; |
| 1067 | } |
| 1068 | |
| 1069 | AutoRestoreEffects are; |
| 1070 | AutoCheckFlush acf(this); |
| 1071 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf); |
| 1072 | |
| 1073 | GR_CREATE_TRACE_MARKER("GrContext::drawDRRect", target); |
| 1074 | |
| 1075 | if (!fOvalRenderer->drawDRRect(target, this, paint.isAntiAlias(), outer, inner)) { |
| 1076 | SkPath path; |
| 1077 | path.addRRect(inner); |
| 1078 | path.addRRect(outer); |
| 1079 | path.setFillType(SkPath::kEvenOdd_FillType); |
| 1080 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1081 | GrStrokeInfo fillRec(SkStrokeRec::kFill_InitStyle); |
| commit-bot@chromium.org | 0a09d71 | 2014-04-09 21:26:11 +0000 | [diff] [blame] | 1082 | this->internalDrawPath(target, paint.isAntiAlias(), path, fillRec); |
| 1083 | } |
| 1084 | } |
| 1085 | |
| 1086 | /////////////////////////////////////////////////////////////////////////////// |
| 1087 | |
| bsalomon@google.com | 93c9660 | 2012-04-27 13:05:21 +0000 | [diff] [blame] | 1088 | void GrContext::drawOval(const GrPaint& paint, |
| commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 1089 | const SkRect& oval, |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1090 | const GrStrokeInfo& strokeInfo) { |
| commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 1091 | if (oval.isEmpty()) { |
| 1092 | return; |
| 1093 | } |
| jvanverth@google.com | 46d3d39 | 2013-01-22 13:34:01 +0000 | [diff] [blame] | 1094 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1095 | if (strokeInfo.isDashed()) { |
| 1096 | SkPath path; |
| 1097 | path.addOval(oval); |
| 1098 | this->drawPath(paint, path, strokeInfo); |
| 1099 | return; |
| 1100 | } |
| 1101 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1102 | AutoRestoreEffects are; |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 1103 | AutoCheckFlush acf(this); |
| 1104 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 1105 | if (NULL == target) { |
| 1106 | return; |
| 1107 | } |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1108 | |
| commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 1109 | GR_CREATE_TRACE_MARKER("GrContext::drawOval", target); |
| 1110 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1111 | const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec(); |
| 1112 | |
| 1113 | |
| 1114 | if (!fOvalRenderer->drawOval(target, this, paint.isAntiAlias(), oval, strokeRec)) { |
| bsalomon@google.com | 93c9660 | 2012-04-27 13:05:21 +0000 | [diff] [blame] | 1115 | SkPath path; |
| jvanverth@google.com | 46d3d39 | 2013-01-22 13:34:01 +0000 | [diff] [blame] | 1116 | path.addOval(oval); |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1117 | this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo); |
| skia.committer@gmail.com | 98ded84 | 2013-01-23 07:06:17 +0000 | [diff] [blame] | 1118 | } |
| bsalomon@google.com | 150d284 | 2012-01-12 20:19:56 +0000 | [diff] [blame] | 1119 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1120 | |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1121 | // Can 'path' be drawn as a pair of filled nested rectangles? |
| 1122 | static bool is_nested_rects(GrDrawTarget* target, |
| 1123 | const SkPath& path, |
| 1124 | const SkStrokeRec& stroke, |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 1125 | SkRect rects[2]) { |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1126 | SkASSERT(stroke.isFillStyle()); |
| 1127 | |
| 1128 | if (path.isInverseFillType()) { |
| 1129 | return false; |
| 1130 | } |
| 1131 | |
| 1132 | const GrDrawState& drawState = target->getDrawState(); |
| 1133 | |
| 1134 | // TODO: this restriction could be lifted if we were willing to apply |
| 1135 | // the matrix to all the points individually rather than just to the rect |
| 1136 | if (!drawState.getViewMatrix().preservesAxisAlignment()) { |
| 1137 | return false; |
| 1138 | } |
| 1139 | |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 1140 | if (!target->getDrawState().canTweakAlphaForCoverage() && |
| 1141 | target->shouldDisableCoverageAAForBlend()) { |
| 1142 | return false; |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | SkPath::Direction dirs[2]; |
| 1146 | if (!path.isNestedRects(rects, dirs)) { |
| 1147 | return false; |
| 1148 | } |
| 1149 | |
| robertphillips@google.com | 8d3c640 | 2013-08-20 12:11:31 +0000 | [diff] [blame] | 1150 | if (SkPath::kWinding_FillType == path.getFillType() && dirs[0] == dirs[1]) { |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1151 | // The two rects need to be wound opposite to each other |
| robertphillips@google.com | 8d3c640 | 2013-08-20 12:11:31 +0000 | [diff] [blame] | 1152 | return false; |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1153 | } |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1154 | |
| robertphillips@google.com | 8d3c640 | 2013-08-20 12:11:31 +0000 | [diff] [blame] | 1155 | // Right now, nested rects where the margin is not the same width |
| 1156 | // all around do not render correctly |
| 1157 | const SkScalar* outer = rects[0].asScalars(); |
| 1158 | const SkScalar* inner = rects[1].asScalars(); |
| 1159 | |
| 1160 | SkScalar margin = SkScalarAbs(outer[0] - inner[0]); |
| 1161 | for (int i = 1; i < 4; ++i) { |
| 1162 | SkScalar temp = SkScalarAbs(outer[i] - inner[i]); |
| 1163 | if (!SkScalarNearlyEqual(margin, temp)) { |
| 1164 | return false; |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | return true; |
| 1169 | } |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1170 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1171 | void GrContext::drawPath(const GrPaint& paint, const SkPath& path, const GrStrokeInfo& strokeInfo) { |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1172 | |
| bsalomon@google.com | fa6ac93 | 2011-10-05 19:57:55 +0000 | [diff] [blame] | 1173 | if (path.isEmpty()) { |
| sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 1174 | if (path.isInverseFillType()) { |
| bsalomon@google.com | fa6ac93 | 2011-10-05 19:57:55 +0000 | [diff] [blame] | 1175 | this->drawPaint(paint); |
| 1176 | } |
| 1177 | return; |
| 1178 | } |
| 1179 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1180 | if (strokeInfo.isDashed()) { |
| egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 1181 | SkPoint pts[2]; |
| 1182 | if (path.isLine(pts)) { |
| 1183 | AutoRestoreEffects are; |
| 1184 | AutoCheckFlush acf(this); |
| 1185 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 1186 | if (NULL == target) { |
| 1187 | return; |
| 1188 | } |
| egdaniel | e61c411 | 2014-06-12 10:24:21 -0700 | [diff] [blame] | 1189 | GrDrawState* drawState = target->drawState(); |
| 1190 | |
| 1191 | SkMatrix origViewMatrix = drawState->getViewMatrix(); |
| 1192 | GrDrawState::AutoViewMatrixRestore avmr; |
| 1193 | if (avmr.setIdentity(target->drawState())) { |
| 1194 | if (GrDashingEffect::DrawDashLine(pts, paint, strokeInfo, fGpu, target, |
| 1195 | origViewMatrix)) { |
| 1196 | return; |
| 1197 | } |
| 1198 | } |
| 1199 | } |
| 1200 | |
| 1201 | // Filter dashed path into new path with the dashing applied |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1202 | const SkPathEffect::DashInfo& info = strokeInfo.getDashInfo(); |
| 1203 | SkTLazy<SkPath> effectPath; |
| 1204 | GrStrokeInfo newStrokeInfo(strokeInfo, false); |
| 1205 | SkStrokeRec* stroke = newStrokeInfo.getStrokeRecPtr(); |
| 1206 | if (SkDashPath::FilterDashPath(effectPath.init(), path, stroke, NULL, info)) { |
| 1207 | this->drawPath(paint, *effectPath.get(), newStrokeInfo); |
| 1208 | return; |
| 1209 | } |
| 1210 | |
| 1211 | this->drawPath(paint, path, newStrokeInfo); |
| 1212 | return; |
| 1213 | } |
| 1214 | |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1215 | // 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] | 1216 | // Scratch textures can be recycled after they are returned to the texture |
| 1217 | // cache. This presents a potential hazard for buffered drawing. However, |
| 1218 | // the writePixels that uploads to the scratch will perform a flush so we're |
| 1219 | // OK. |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1220 | AutoRestoreEffects are; |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 1221 | AutoCheckFlush acf(this); |
| 1222 | GrDrawTarget* target = this->prepareToDraw(&paint, BUFFERED_DRAW, &are, &acf); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 1223 | if (NULL == target) { |
| 1224 | return; |
| 1225 | } |
| commit-bot@chromium.org | e0a868c | 2013-11-22 07:02:11 +0000 | [diff] [blame] | 1226 | GrDrawState* drawState = target->drawState(); |
| bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 1227 | |
| egdaniel | 93a37bc | 2014-07-21 13:47:57 -0700 | [diff] [blame] | 1228 | GR_CREATE_TRACE_MARKER1("GrContext::drawPath", target, "Is Convex", path.isConvex()); |
| commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 1229 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1230 | const SkStrokeRec& strokeRec = strokeInfo.getStrokeRec(); |
| 1231 | |
| commit-bot@chromium.org | e0a868c | 2013-11-22 07:02:11 +0000 | [diff] [blame] | 1232 | bool useCoverageAA = paint.isAntiAlias() && !drawState->getRenderTarget()->isMultisampled(); |
| 1233 | |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1234 | if (useCoverageAA && strokeRec.getWidth() < 0 && !path.isConvex()) { |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1235 | // Concave AA paths are expensive - try to avoid them for special cases |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1236 | SkRect rects[2]; |
| 1237 | |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 1238 | if (is_nested_rects(target, path, strokeRec, rects)) { |
| commit-bot@chromium.org | e0a868c | 2013-11-22 07:02:11 +0000 | [diff] [blame] | 1239 | SkMatrix origViewMatrix = drawState->getViewMatrix(); |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 1240 | GrDrawState::AutoViewMatrixRestore avmr; |
| 1241 | if (!avmr.setIdentity(target->drawState())) { |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1242 | return; |
| 1243 | } |
| 1244 | |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 1245 | fAARectRenderer->fillAANestedRects(this->getGpu(), target, rects, origViewMatrix); |
| robertphillips@google.com | 83d1a68 | 2013-05-17 12:50:27 +0000 | [diff] [blame] | 1246 | return; |
| 1247 | } |
| 1248 | } |
| 1249 | |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1250 | SkRect ovalRect; |
| 1251 | bool isOval = path.isOval(&ovalRect); |
| 1252 | |
| skia.committer@gmail.com | 7e32851 | 2013-03-23 07:01:28 +0000 | [diff] [blame] | 1253 | if (!isOval || path.isInverseFillType() |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1254 | || !fOvalRenderer->drawOval(target, this, paint.isAntiAlias(), ovalRect, strokeRec)) { |
| 1255 | this->internalDrawPath(target, paint.isAntiAlias(), path, strokeInfo); |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1256 | } |
| 1257 | } |
| 1258 | |
| bsalomon@google.com | 1b20a10 | 2013-11-08 14:42:56 +0000 | [diff] [blame] | 1259 | void GrContext::internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path, |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1260 | const GrStrokeInfo& strokeInfo) { |
| commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 1261 | SkASSERT(!path.isEmpty()); |
| commit-bot@chromium.org | 8131283 | 2013-03-22 18:34:09 +0000 | [diff] [blame] | 1262 | |
| commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 1263 | GR_CREATE_TRACE_MARKER("GrContext::internalDrawPath", target); |
| 1264 | |
| 1265 | |
| bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 1266 | // An Assumption here is that path renderer would use some form of tweaking |
| 1267 | // the src color (either the input alpha or in the frag shader) to implement |
| 1268 | // aa. If we have some future driver-mojo path AA that can do the right |
| 1269 | // thing WRT to the blend then we'll need some query on the PR. |
| commit-bot@chromium.org | e0a868c | 2013-11-22 07:02:11 +0000 | [diff] [blame] | 1270 | bool useCoverageAA = useAA && |
| 1271 | !target->getDrawState().getRenderTarget()->isMultisampled() && |
| 1272 | !target->shouldDisableCoverageAAForBlend(); |
| bsalomon@google.com | 289533a | 2011-10-27 12:34:25 +0000 | [diff] [blame] | 1273 | |
| commit-bot@chromium.org | e0a868c | 2013-11-22 07:02:11 +0000 | [diff] [blame] | 1274 | |
| 1275 | GrPathRendererChain::DrawType type = |
| 1276 | useCoverageAA ? GrPathRendererChain::kColorAntiAlias_DrawType : |
| robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 1277 | GrPathRendererChain::kColor_DrawType; |
| bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 1278 | |
| robertphillips@google.com | eb928ea | 2013-01-08 13:45:09 +0000 | [diff] [blame] | 1279 | const SkPath* pathPtr = &path; |
| commit-bot@chromium.org | f0c41e2 | 2014-01-14 18:42:34 +0000 | [diff] [blame] | 1280 | SkTLazy<SkPath> tmpPath; |
| egdaniel | d58a0ba | 2014-06-11 10:30:05 -0700 | [diff] [blame] | 1281 | SkTCopyOnFirstWrite<SkStrokeRec> stroke(strokeInfo.getStrokeRec()); |
| robertphillips@google.com | eb928ea | 2013-01-08 13:45:09 +0000 | [diff] [blame] | 1282 | |
| 1283 | // Try a 1st time without stroking the path and without allowing the SW renderer |
| robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 1284 | GrPathRenderer* pr = this->getPathRenderer(*pathPtr, *stroke, target, false, type); |
| robertphillips@google.com | eb928ea | 2013-01-08 13:45:09 +0000 | [diff] [blame] | 1285 | |
| robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 1286 | if (NULL == pr) { |
| commit-bot@chromium.org | f0c41e2 | 2014-01-14 18:42:34 +0000 | [diff] [blame] | 1287 | if (!GrPathRenderer::IsStrokeHairlineOrEquivalent(*stroke, this->getMatrix(), NULL)) { |
| robertphillips@google.com | eb928ea | 2013-01-08 13:45:09 +0000 | [diff] [blame] | 1288 | // It didn't work the 1st time, so try again with the stroked path |
| commit-bot@chromium.org | f0c41e2 | 2014-01-14 18:42:34 +0000 | [diff] [blame] | 1289 | if (stroke->applyToPath(tmpPath.init(), *pathPtr)) { |
| 1290 | pathPtr = tmpPath.get(); |
| 1291 | stroke.writable()->setFillStyle(); |
| commit-bot@chromium.org | e0a868c | 2013-11-22 07:02:11 +0000 | [diff] [blame] | 1292 | if (pathPtr->isEmpty()) { |
| 1293 | return; |
| 1294 | } |
| robertphillips@google.com | eb928ea | 2013-01-08 13:45:09 +0000 | [diff] [blame] | 1295 | } |
| 1296 | } |
| commit-bot@chromium.org | 19dd017 | 2013-08-05 13:28:55 +0000 | [diff] [blame] | 1297 | |
| robertphillips@google.com | eb928ea | 2013-01-08 13:45:09 +0000 | [diff] [blame] | 1298 | // This time, allow SW renderer |
| robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 1299 | pr = this->getPathRenderer(*pathPtr, *stroke, target, true, type); |
| robertphillips@google.com | eb928ea | 2013-01-08 13:45:09 +0000 | [diff] [blame] | 1300 | } |
| 1301 | |
| robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 1302 | if (NULL == pr) { |
| commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 1303 | #ifdef SK_DEBUG |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1304 | GrPrintf("Unable to find path renderer compatible with path.\n"); |
| bsalomon@google.com | 1983f39 | 2011-10-10 15:17:58 +0000 | [diff] [blame] | 1305 | #endif |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1306 | return; |
| 1307 | } |
| 1308 | |
| robertphillips@google.com | e79f320 | 2014-02-11 16:30:21 +0000 | [diff] [blame] | 1309 | pr->drawPath(*pathPtr, *stroke, target, useCoverageAA); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1310 | } |
| bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 1311 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1312 | //////////////////////////////////////////////////////////////////////////////// |
| 1313 | |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 1314 | void GrContext::flush(int flagsBitfield) { |
| robertphillips@google.com | e7db8d6 | 2013-07-04 11:48:52 +0000 | [diff] [blame] | 1315 | if (NULL == fDrawBuffer) { |
| 1316 | return; |
| 1317 | } |
| 1318 | |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 1319 | if (kDiscard_FlushBit & flagsBitfield) { |
| 1320 | fDrawBuffer->reset(); |
| 1321 | } else { |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 1322 | fDrawBuffer->flush(); |
| junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 1323 | } |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 1324 | fFlushToReduceCacheSize = false; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1325 | } |
| 1326 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1327 | bool GrContext::writeTexturePixels(GrTexture* texture, |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1328 | int left, int top, int width, int height, |
| 1329 | GrPixelConfig config, const void* buffer, size_t rowBytes, |
| 1330 | uint32_t flags) { |
| bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1331 | ASSERT_OWNED_RESOURCE(texture); |
| 1332 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1333 | if ((kUnpremul_PixelOpsFlag & flags) || !fGpu->canWriteTexturePixels(texture, config)) { |
| 1334 | if (NULL != texture->asRenderTarget()) { |
| 1335 | return this->writeRenderTargetPixels(texture->asRenderTarget(), |
| 1336 | left, top, width, height, |
| 1337 | config, buffer, rowBytes, flags); |
| 1338 | } else { |
| 1339 | return false; |
| 1340 | } |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1341 | } |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1342 | |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1343 | if (!(kDontFlush_PixelOpsFlag & flags)) { |
| 1344 | this->flush(); |
| 1345 | } |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1346 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1347 | return fGpu->writeTexturePixels(texture, left, top, width, height, |
| 1348 | config, buffer, rowBytes); |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1349 | } |
| 1350 | |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1351 | bool GrContext::readTexturePixels(GrTexture* texture, |
| 1352 | int left, int top, int width, int height, |
| 1353 | GrPixelConfig config, void* buffer, size_t rowBytes, |
| 1354 | uint32_t flags) { |
| bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1355 | ASSERT_OWNED_RESOURCE(texture); |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1356 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1357 | GrRenderTarget* target = texture->asRenderTarget(); |
| 1358 | if (NULL != target) { |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1359 | return this->readRenderTargetPixels(target, |
| 1360 | left, top, width, height, |
| 1361 | config, buffer, rowBytes, |
| 1362 | flags); |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1363 | } else { |
| commit-bot@chromium.org | 3f80dd5 | 2013-10-23 15:32:39 +0000 | [diff] [blame] | 1364 | // TODO: make this more efficient for cases where we're reading the entire |
| 1365 | // texture, i.e., use GetTexImage() instead |
| 1366 | |
| 1367 | // create scratch rendertarget and read from that |
| 1368 | GrAutoScratchTexture ast; |
| 1369 | GrTextureDesc desc; |
| 1370 | desc.fFlags = kRenderTarget_GrTextureFlagBit; |
| 1371 | desc.fWidth = width; |
| 1372 | desc.fHeight = height; |
| 1373 | desc.fConfig = config; |
| 1374 | desc.fOrigin = kTopLeft_GrSurfaceOrigin; |
| 1375 | ast.set(this, desc, kExact_ScratchTexMatch); |
| 1376 | GrTexture* dst = ast.texture(); |
| 1377 | if (NULL != dst && NULL != (target = dst->asRenderTarget())) { |
| 1378 | this->copyTexture(texture, target, NULL); |
| 1379 | return this->readRenderTargetPixels(target, |
| 1380 | left, top, width, height, |
| 1381 | config, buffer, rowBytes, |
| 1382 | flags); |
| 1383 | } |
| skia.committer@gmail.com | 583b18a | 2013-10-24 07:01:59 +0000 | [diff] [blame] | 1384 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1385 | return false; |
| 1386 | } |
| 1387 | } |
| 1388 | |
| bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 1389 | #include "SkConfig8888.h" |
| 1390 | |
| reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 1391 | // toggles between RGBA and BGRA |
| 1392 | static SkColorType toggle_colortype32(SkColorType ct) { |
| 1393 | if (kRGBA_8888_SkColorType == ct) { |
| 1394 | return kBGRA_8888_SkColorType; |
| 1395 | } else { |
| 1396 | SkASSERT(kBGRA_8888_SkColorType == ct); |
| 1397 | return kRGBA_8888_SkColorType; |
| bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 1398 | } |
| 1399 | } |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1400 | |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1401 | bool GrContext::readRenderTargetPixels(GrRenderTarget* target, |
| 1402 | int left, int top, int width, int height, |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1403 | GrPixelConfig dstConfig, void* buffer, size_t rowBytes, |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1404 | uint32_t flags) { |
| bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1405 | ASSERT_OWNED_RESOURCE(target); |
| 1406 | |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1407 | if (NULL == target) { |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1408 | target = fRenderTarget.get(); |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1409 | if (NULL == target) { |
| 1410 | return false; |
| 1411 | } |
| 1412 | } |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 1413 | |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1414 | if (!(kDontFlush_PixelOpsFlag & flags)) { |
| 1415 | this->flush(); |
| 1416 | } |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1417 | |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1418 | // 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] | 1419 | |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1420 | // If fGpu->readPixels would incur a y-flip cost then we will read the pixels upside down. We'll |
| 1421 | // either do the flipY by drawing into a scratch with a matrix or on the cpu after the read. |
| 1422 | bool flipY = fGpu->readPixelsWillPayForYFlip(target, left, top, |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1423 | width, height, dstConfig, |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1424 | rowBytes); |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1425 | // We ignore the preferred config if it is different than our config unless it is an R/B swap. |
| 1426 | // In that case we'll perform an R and B swap while drawing to a scratch texture of the swapped |
| 1427 | // config. Then we will call readPixels on the scratch with the swapped config. The swaps during |
| 1428 | // the draw cancels out the fact that we call readPixels with a config that is R/B swapped from |
| 1429 | // dstConfig. |
| 1430 | GrPixelConfig readConfig = dstConfig; |
| 1431 | bool swapRAndB = false; |
| commit-bot@chromium.org | 5d1d79a | 2013-05-24 18:52:52 +0000 | [diff] [blame] | 1432 | if (GrPixelConfigSwapRAndB(dstConfig) == |
| 1433 | fGpu->preferredReadPixelsConfig(dstConfig, target->config())) { |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1434 | readConfig = GrPixelConfigSwapRAndB(readConfig); |
| 1435 | swapRAndB = true; |
| 1436 | } |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1437 | |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1438 | bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags); |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1439 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1440 | if (unpremul && !GrPixelConfigIs8888(dstConfig)) { |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1441 | // The unpremul flag is only allowed for these two configs. |
| bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 1442 | return false; |
| 1443 | } |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1444 | |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1445 | // If the src is a texture and we would have to do conversions after read pixels, we instead |
| 1446 | // do the conversions by drawing the src to a scratch texture. If we handle any of the |
| 1447 | // conversions in the draw we set the corresponding bool to false so that we don't reapply it |
| 1448 | // on the read back pixels. |
| 1449 | GrTexture* src = target->asTexture(); |
| bsalomon@google.com | c4ff22a | 2011-11-10 21:56:21 +0000 | [diff] [blame] | 1450 | GrAutoScratchTexture ast; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1451 | if (NULL != src && (swapRAndB || unpremul || flipY)) { |
| 1452 | // Make the scratch a render target because we don't have a robust readTexturePixels as of |
| 1453 | // yet. It calls this function. |
| robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 1454 | GrTextureDesc desc; |
| 1455 | desc.fFlags = kRenderTarget_GrTextureFlagBit; |
| 1456 | desc.fWidth = width; |
| 1457 | desc.fHeight = height; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1458 | desc.fConfig = readConfig; |
| senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 1459 | desc.fOrigin = kTopLeft_GrSurfaceOrigin; |
| bsalomon@google.com | c4ff22a | 2011-11-10 21:56:21 +0000 | [diff] [blame] | 1460 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1461 | // 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] | 1462 | // match the passed rect. However, if we see many different size rectangles we will trash |
| 1463 | // our texture cache and pay the cost of creating and destroying many textures. So, we only |
| 1464 | // 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] | 1465 | ScratchTexMatch match = kApprox_ScratchTexMatch; |
| 1466 | if (0 == left && |
| 1467 | 0 == top && |
| 1468 | target->width() == width && |
| 1469 | target->height() == height && |
| 1470 | fGpu->fullReadPixelsIsFasterThanPartial()) { |
| 1471 | match = kExact_ScratchTexMatch; |
| 1472 | } |
| 1473 | ast.set(this, desc, match); |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1474 | GrTexture* texture = ast.texture(); |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1475 | if (texture) { |
| bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1476 | // compute a matrix to perform the draw |
| bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1477 | SkMatrix textureMatrix; |
| senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 1478 | textureMatrix.setTranslate(SK_Scalar1 *left, SK_Scalar1 *top); |
| bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1479 | textureMatrix.postIDiv(src->width(), src->height()); |
| 1480 | |
| bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 1481 | SkAutoTUnref<const GrEffect> effect; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1482 | if (unpremul) { |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1483 | effect.reset(this->createPMToUPMEffect(src, swapRAndB, textureMatrix)); |
| 1484 | if (NULL != effect) { |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1485 | 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] | 1486 | } |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1487 | } |
| 1488 | // If we failed to create a PM->UPM effect and have no other conversions to perform then |
| 1489 | // there is no longer any point to using the scratch. |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1490 | if (NULL != effect || flipY || swapRAndB) { |
| 1491 | if (!effect) { |
| 1492 | effect.reset(GrConfigConversionEffect::Create( |
| 1493 | src, |
| 1494 | swapRAndB, |
| 1495 | GrConfigConversionEffect::kNone_PMConversion, |
| 1496 | textureMatrix)); |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1497 | } |
| 1498 | swapRAndB = false; // we will handle the swap in the draw. |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1499 | |
| robertphillips@google.com | 13f181f | 2013-03-02 12:02:08 +0000 | [diff] [blame] | 1500 | // We protect the existing geometry here since it may not be |
| 1501 | // clear to the caller that a draw operation (i.e., drawSimpleRect) |
| 1502 | // can be invoked in this method |
| 1503 | GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit); |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1504 | GrDrawState* drawState = fGpu->drawState(); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1505 | SkASSERT(effect); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1506 | drawState->addColorEffect(effect); |
| bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1507 | |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1508 | drawState->setRenderTarget(texture->asRenderTarget()); |
| commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 1509 | SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)); |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 1510 | fGpu->drawSimpleRect(rect); |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1511 | // we want to read back from the scratch's origin |
| 1512 | left = 0; |
| 1513 | top = 0; |
| 1514 | target = texture->asRenderTarget(); |
| 1515 | } |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1516 | } |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1517 | } |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1518 | if (!fGpu->readPixels(target, |
| 1519 | left, top, width, height, |
| senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 1520 | readConfig, buffer, rowBytes)) { |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1521 | return false; |
| 1522 | } |
| bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1523 | // 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] | 1524 | if (unpremul || swapRAndB) { |
| reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 1525 | SkDstPixelInfo dstPI; |
| 1526 | if (!GrPixelConfig2ColorType(dstConfig, &dstPI.fColorType)) { |
| 1527 | return false; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1528 | } |
| reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 1529 | dstPI.fAlphaType = kUnpremul_SkAlphaType; |
| 1530 | dstPI.fPixels = buffer; |
| 1531 | dstPI.fRowBytes = rowBytes; |
| 1532 | |
| 1533 | SkSrcPixelInfo srcPI; |
| 1534 | srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType; |
| 1535 | srcPI.fAlphaType = kPremul_SkAlphaType; |
| 1536 | srcPI.fPixels = buffer; |
| 1537 | srcPI.fRowBytes = rowBytes; |
| 1538 | |
| 1539 | return srcPI.convertPixelsTo(&dstPI, width, height); |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1540 | } |
| 1541 | return true; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1542 | } |
| 1543 | |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 1544 | void GrContext::resolveRenderTarget(GrRenderTarget* target) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1545 | SkASSERT(target); |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 1546 | ASSERT_OWNED_RESOURCE(target); |
| 1547 | // In the future we may track whether there are any pending draws to this |
| 1548 | // target. We don't today so we always perform a flush. We don't promise |
| 1549 | // this to our clients, though. |
| 1550 | this->flush(); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 1551 | if (NULL != fGpu) { |
| 1552 | fGpu->resolveRenderTarget(target); |
| 1553 | } |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 1554 | } |
| 1555 | |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 1556 | void GrContext::discardRenderTarget(GrRenderTarget* renderTarget) { |
| 1557 | SkASSERT(renderTarget); |
| 1558 | ASSERT_OWNED_RESOURCE(renderTarget); |
| commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 1559 | AutoRestoreEffects are; |
| 1560 | AutoCheckFlush acf(this); |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 1561 | GrDrawTarget* target = this->prepareToDraw(NULL, BUFFERED_DRAW, &are, &acf); |
| 1562 | if (NULL == target) { |
| 1563 | return; |
| 1564 | } |
| 1565 | target->discard(renderTarget); |
| commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 1566 | } |
| 1567 | |
| scroggo@google.com | a2a3192 | 2012-12-07 19:14:45 +0000 | [diff] [blame] | 1568 | void GrContext::copyTexture(GrTexture* src, GrRenderTarget* dst, const SkIPoint* topLeft) { |
| senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 1569 | if (NULL == src || NULL == dst) { |
| 1570 | return; |
| 1571 | } |
| 1572 | ASSERT_OWNED_RESOURCE(src); |
| 1573 | |
| twiz@google.com | 1ac87ff | 2012-04-27 19:39:33 +0000 | [diff] [blame] | 1574 | // Writes pending to the source texture are not tracked, so a flush |
| 1575 | // 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] | 1576 | // of the source texture. See similar behavior in |
| twiz@google.com | 1ac87ff | 2012-04-27 19:39:33 +0000 | [diff] [blame] | 1577 | // GrContext::resolveRenderTarget. |
| 1578 | this->flush(); |
| 1579 | |
| bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 1580 | GrDrawTarget::AutoStateRestore asr(fGpu, GrDrawTarget::kReset_ASRInit); |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 1581 | GrDrawState* drawState = fGpu->drawState(); |
| 1582 | drawState->setRenderTarget(dst); |
| bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1583 | SkMatrix sampleM; |
| senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 1584 | sampleM.setIDiv(src->width(), src->height()); |
| scroggo@google.com | a2a3192 | 2012-12-07 19:14:45 +0000 | [diff] [blame] | 1585 | SkIRect srcRect = SkIRect::MakeWH(dst->width(), dst->height()); |
| 1586 | if (NULL != topLeft) { |
| 1587 | srcRect.offset(*topLeft); |
| 1588 | } |
| 1589 | SkIRect srcBounds = SkIRect::MakeWH(src->width(), src->height()); |
| 1590 | if (!srcRect.intersect(srcBounds)) { |
| 1591 | return; |
| 1592 | } |
| 1593 | sampleM.preTranslate(SkIntToScalar(srcRect.fLeft), SkIntToScalar(srcRect.fTop)); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1594 | drawState->addColorTextureEffect(src, sampleM); |
| scroggo@google.com | a2a3192 | 2012-12-07 19:14:45 +0000 | [diff] [blame] | 1595 | SkRect dstR = SkRect::MakeWH(SkIntToScalar(srcRect.width()), SkIntToScalar(srcRect.height())); |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 1596 | fGpu->drawSimpleRect(dstR); |
| senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 1597 | } |
| 1598 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1599 | bool GrContext::writeRenderTargetPixels(GrRenderTarget* target, |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1600 | int left, int top, int width, int height, |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1601 | GrPixelConfig srcConfig, |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1602 | const void* buffer, |
| 1603 | size_t rowBytes, |
| 1604 | uint32_t flags) { |
| bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 1605 | ASSERT_OWNED_RESOURCE(target); |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1606 | |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1607 | if (NULL == target) { |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1608 | target = fRenderTarget.get(); |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1609 | if (NULL == target) { |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1610 | return false; |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1611 | } |
| 1612 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1613 | |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1614 | // TODO: when underlying api has a direct way to do this we should use it (e.g. glDrawPixels on |
| 1615 | // desktop GL). |
| 1616 | |
| 1617 | // We will always call some form of writeTexturePixels and we will pass our flags on to it. |
| 1618 | // Thus, we don't perform a flush here since that call will do it (if the kNoFlush flag isn't |
| 1619 | // set.) |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1620 | |
| bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 1621 | // If the RT is also a texture and we don't have to premultiply then take the texture path. |
| 1622 | // We expect to be at least as fast or faster since it doesn't use an intermediate texture as |
| 1623 | // we do below. |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1624 | |
| commit-bot@chromium.org | 4382330 | 2013-09-25 20:57:51 +0000 | [diff] [blame] | 1625 | #if !defined(SK_BUILD_FOR_MAC) |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1626 | // At least some drivers on the Mac get confused when glTexImage2D is called on a texture |
| 1627 | // attached to an FBO. The FBO still sees the old image. TODO: determine what OS versions and/or |
| 1628 | // HW is affected. |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1629 | if (NULL != target->asTexture() && !(kUnpremul_PixelOpsFlag & flags) && |
| 1630 | fGpu->canWriteTexturePixels(target->asTexture(), srcConfig)) { |
| 1631 | return this->writeTexturePixels(target->asTexture(), |
| 1632 | left, top, width, height, |
| 1633 | srcConfig, buffer, rowBytes, flags); |
| bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 1634 | } |
| 1635 | #endif |
| bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1636 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1637 | // We ignore the preferred config unless it is a R/B swap of the src config. In that case |
| 1638 | // we will upload the original src data to a scratch texture but we will spoof it as the swapped |
| 1639 | // config. This scratch will then have R and B swapped. We correct for this by swapping again |
| 1640 | // when drawing the scratch to the dst using a conversion effect. |
| 1641 | bool swapRAndB = false; |
| 1642 | GrPixelConfig writeConfig = srcConfig; |
| commit-bot@chromium.org | 5d1d79a | 2013-05-24 18:52:52 +0000 | [diff] [blame] | 1643 | if (GrPixelConfigSwapRAndB(srcConfig) == |
| 1644 | fGpu->preferredWritePixelsConfig(srcConfig, target->config())) { |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1645 | writeConfig = GrPixelConfigSwapRAndB(srcConfig); |
| 1646 | swapRAndB = true; |
| bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 1647 | } |
| 1648 | |
| robertphillips@google.com | 75b3c96 | 2012-06-07 12:08:45 +0000 | [diff] [blame] | 1649 | GrTextureDesc desc; |
| 1650 | desc.fWidth = width; |
| 1651 | desc.fHeight = height; |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1652 | desc.fConfig = writeConfig; |
| bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 1653 | GrAutoScratchTexture ast(this, desc); |
| 1654 | GrTexture* texture = ast.texture(); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1655 | if (NULL == texture) { |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1656 | return false; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1657 | } |
| bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1658 | |
| bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 1659 | SkAutoTUnref<const GrEffect> effect; |
| bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 1660 | SkMatrix textureMatrix; |
| bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 1661 | textureMatrix.setIDiv(texture->width(), texture->height()); |
| 1662 | |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1663 | // allocate a tmp buffer and sw convert the pixels to premul |
| 1664 | SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0); |
| 1665 | |
| 1666 | if (kUnpremul_PixelOpsFlag & flags) { |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1667 | if (!GrPixelConfigIs8888(srcConfig)) { |
| 1668 | return false; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1669 | } |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1670 | effect.reset(this->createUPMToPMEffect(texture, swapRAndB, textureMatrix)); |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1671 | // 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] | 1672 | if (NULL == effect) { |
| reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 1673 | SkSrcPixelInfo srcPI; |
| 1674 | if (!GrPixelConfig2ColorType(srcConfig, &srcPI.fColorType)) { |
| 1675 | return false; |
| 1676 | } |
| 1677 | srcPI.fAlphaType = kUnpremul_SkAlphaType; |
| 1678 | srcPI.fPixels = buffer; |
| 1679 | srcPI.fRowBytes = rowBytes; |
| 1680 | |
| commit-bot@chromium.org | 231f6b8 | 2014-03-25 13:38:44 +0000 | [diff] [blame] | 1681 | tmpPixels.reset(width * height); |
| reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 1682 | |
| 1683 | SkDstPixelInfo dstPI; |
| 1684 | dstPI.fColorType = srcPI.fColorType; |
| 1685 | dstPI.fAlphaType = kPremul_SkAlphaType; |
| 1686 | dstPI.fPixels = tmpPixels.get(); |
| 1687 | dstPI.fRowBytes = 4 * width; |
| 1688 | |
| 1689 | if (!srcPI.convertPixelsTo(&dstPI, width, height)) { |
| 1690 | return false; |
| 1691 | } |
| 1692 | |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1693 | buffer = tmpPixels.get(); |
| 1694 | rowBytes = 4 * width; |
| 1695 | } |
| 1696 | } |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1697 | if (NULL == effect) { |
| 1698 | effect.reset(GrConfigConversionEffect::Create(texture, |
| 1699 | swapRAndB, |
| 1700 | GrConfigConversionEffect::kNone_PMConversion, |
| 1701 | textureMatrix)); |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1702 | } |
| 1703 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1704 | if (!this->writeTexturePixels(texture, |
| 1705 | 0, 0, width, height, |
| 1706 | writeConfig, buffer, rowBytes, |
| 1707 | flags & ~kUnpremul_PixelOpsFlag)) { |
| 1708 | return false; |
| 1709 | } |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1710 | |
| robertphillips@google.com | 13f181f | 2013-03-02 12:02:08 +0000 | [diff] [blame] | 1711 | // writeRenderTargetPixels can be called in the midst of drawing another |
| skia.committer@gmail.com | 0c23faf | 2013-03-03 07:16:29 +0000 | [diff] [blame] | 1712 | // 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] | 1713 | // drawing a rect) so preserve the current geometry. |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 1714 | SkMatrix matrix; |
| 1715 | matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top)); |
| 1716 | GrDrawTarget::AutoGeometryAndStatePush agasp(fGpu, GrDrawTarget::kReset_ASRInit, &matrix); |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 1717 | GrDrawState* drawState = fGpu->drawState(); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1718 | SkASSERT(effect); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1719 | drawState->addColorEffect(effect); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1720 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 1721 | drawState->setRenderTarget(target); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1722 | |
| bsalomon | 01c8da1 | 2014-08-04 09:21:30 -0700 | [diff] [blame] | 1723 | fGpu->drawSimpleRect(SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height))); |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 1724 | return true; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1725 | } |
| 1726 | //////////////////////////////////////////////////////////////////////////////// |
| 1727 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1728 | GrDrawTarget* GrContext::prepareToDraw(const GrPaint* paint, |
| 1729 | BufferedDraw buffered, |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 1730 | AutoRestoreEffects* are, |
| 1731 | AutoCheckFlush* acf) { |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1732 | // All users of this draw state should be freeing up all effects when they're done. |
| 1733 | // Otherwise effects that own resources may keep those resources alive indefinitely. |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1734 | SkASSERT(0 == fDrawState->numColorStages() && 0 == fDrawState->numCoverageStages()); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1735 | |
| bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 1736 | if (NULL == fGpu) { |
| 1737 | return NULL; |
| 1738 | } |
| 1739 | |
| bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1740 | if (kNo_BufferedDraw == buffered && kYes_BufferedDraw == fLastDrawWasBuffered) { |
| robertphillips@google.com | 1267fbd | 2013-07-03 18:37:27 +0000 | [diff] [blame] | 1741 | fDrawBuffer->flush(); |
| bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1742 | fLastDrawWasBuffered = kNo_BufferedDraw; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1743 | } |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1744 | ASSERT_OWNED_RESOURCE(fRenderTarget.get()); |
| bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 1745 | if (NULL != paint) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1746 | SkASSERT(NULL != are); |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 1747 | SkASSERT(NULL != acf); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 1748 | are->set(fDrawState); |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1749 | fDrawState->setFromPaint(*paint, fViewMatrix, fRenderTarget.get()); |
| bsalomon@google.com | af84e74 | 2012-10-05 13:23:24 +0000 | [diff] [blame] | 1750 | #if GR_DEBUG_PARTIAL_COVERAGE_CHECK |
| 1751 | if ((paint->hasMask() || 0xff != paint->fCoverage) && |
| bsalomon | 62c447d | 2014-08-08 08:08:50 -0700 | [diff] [blame] | 1752 | !fDrawState->couldApplyCoverage(fGpu->caps())) { |
| bsalomon@google.com | af84e74 | 2012-10-05 13:23:24 +0000 | [diff] [blame] | 1753 | GrPrintf("Partial pixel coverage will be incorrectly blended.\n"); |
| 1754 | } |
| 1755 | #endif |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 1756 | // Clear any vertex attributes configured for the previous use of the |
| 1757 | // GrDrawState which can effect which blend optimizations are in effect. |
| 1758 | fDrawState->setDefaultVertexAttribs(); |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1759 | } else { |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 1760 | fDrawState->reset(fViewMatrix); |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1761 | fDrawState->setRenderTarget(fRenderTarget.get()); |
| bsalomon@google.com | 07ea2db | 2012-08-17 14:06:49 +0000 | [diff] [blame] | 1762 | } |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1763 | GrDrawTarget* target; |
| bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1764 | if (kYes_BufferedDraw == buffered) { |
| bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1765 | fLastDrawWasBuffered = kYes_BufferedDraw; |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1766 | target = fDrawBuffer; |
| bsalomon@google.com | 1d4edd3 | 2012-08-16 18:36:06 +0000 | [diff] [blame] | 1767 | } else { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1768 | SkASSERT(kNo_BufferedDraw == buffered); |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1769 | fLastDrawWasBuffered = kNo_BufferedDraw; |
| 1770 | target = fGpu; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1771 | } |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1772 | fDrawState->setState(GrDrawState::kClip_StateBit, NULL != fClip && |
| 1773 | !fClip->fClipStack->isWideOpen()); |
| 1774 | target->setClip(fClip); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1775 | SkASSERT(fDrawState == target->drawState()); |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 1776 | return target; |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1777 | } |
| 1778 | |
| robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1779 | /* |
| 1780 | * This method finds a path renderer that can draw the specified path on |
| 1781 | * the provided target. |
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1782 | * 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] | 1783 | * can be individually allowed/disallowed via the "allowSW" boolean. |
| 1784 | */ |
| bsalomon@google.com | 8d033a1 | 2012-04-27 15:52:53 +0000 | [diff] [blame] | 1785 | GrPathRenderer* GrContext::getPathRenderer(const SkPath& path, |
| sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 1786 | const SkStrokeRec& stroke, |
| bsalomon@google.com | c2099d2 | 2012-03-02 21:26:50 +0000 | [diff] [blame] | 1787 | const GrDrawTarget* target, |
| bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 1788 | bool allowSW, |
| 1789 | GrPathRendererChain::DrawType drawType, |
| 1790 | GrPathRendererChain::StencilSupport* stencilSupport) { |
| 1791 | |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1792 | if (NULL == fPathRendererChain) { |
| bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 1793 | fPathRendererChain = SkNEW_ARGS(GrPathRendererChain, (this)); |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1794 | } |
| robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1795 | |
| sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 1796 | GrPathRenderer* pr = fPathRendererChain->getPathRenderer(path, |
| 1797 | stroke, |
| robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1798 | target, |
| bsalomon@google.com | 45a15f5 | 2012-12-10 19:10:17 +0000 | [diff] [blame] | 1799 | drawType, |
| 1800 | stencilSupport); |
| robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1801 | |
| 1802 | if (NULL == pr && allowSW) { |
| 1803 | if (NULL == fSoftwarePathRenderer) { |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1804 | fSoftwarePathRenderer = SkNEW_ARGS(GrSoftwarePathRenderer, (this)); |
| robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1805 | } |
| robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 1806 | pr = fSoftwarePathRenderer; |
| 1807 | } |
| 1808 | |
| 1809 | return pr; |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 1810 | } |
| 1811 | |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1812 | //////////////////////////////////////////////////////////////////////////////// |
| commit-bot@chromium.org | 6b7938f | 2013-10-15 14:18:16 +0000 | [diff] [blame] | 1813 | bool GrContext::isConfigRenderable(GrPixelConfig config, bool withMSAA) const { |
| 1814 | return fGpu->caps()->isConfigRenderable(config, withMSAA); |
| robertphillips@google.com | 99a5ac0 | 2012-04-10 19:26:38 +0000 | [diff] [blame] | 1815 | } |
| 1816 | |
| commit-bot@chromium.org | b471a32 | 2014-03-10 07:40:03 +0000 | [diff] [blame] | 1817 | int GrContext::getRecommendedSampleCount(GrPixelConfig config, |
| 1818 | SkScalar dpi) const { |
| 1819 | if (!this->isConfigRenderable(config, true)) { |
| 1820 | return 0; |
| 1821 | } |
| 1822 | int chosenSampleCount = 0; |
| 1823 | if (fGpu->caps()->pathRenderingSupport()) { |
| 1824 | if (dpi >= 250.0f) { |
| 1825 | chosenSampleCount = 4; |
| 1826 | } else { |
| 1827 | chosenSampleCount = 16; |
| 1828 | } |
| 1829 | } |
| 1830 | return chosenSampleCount <= fGpu->caps()->maxSampleCount() ? |
| 1831 | chosenSampleCount : 0; |
| 1832 | } |
| 1833 | |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 1834 | void GrContext::setupDrawBuffer() { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1835 | SkASSERT(NULL == fDrawBuffer); |
| 1836 | SkASSERT(NULL == fDrawBufferVBAllocPool); |
| 1837 | SkASSERT(NULL == fDrawBufferIBAllocPool); |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 1838 | |
| bsalomon@google.com | de6ac2d | 2011-02-25 21:50:42 +0000 | [diff] [blame] | 1839 | fDrawBufferVBAllocPool = |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1840 | SkNEW_ARGS(GrVertexBufferAllocPool, (fGpu, false, |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1841 | DRAW_BUFFER_VBPOOL_BUFFER_SIZE, |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1842 | DRAW_BUFFER_VBPOOL_PREALLOC_BUFFERS)); |
| bsalomon@google.com | de6ac2d | 2011-02-25 21:50:42 +0000 | [diff] [blame] | 1843 | fDrawBufferIBAllocPool = |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1844 | SkNEW_ARGS(GrIndexBufferAllocPool, (fGpu, false, |
| bsalomon@google.com | de6ac2d | 2011-02-25 21:50:42 +0000 | [diff] [blame] | 1845 | DRAW_BUFFER_IBPOOL_BUFFER_SIZE, |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1846 | DRAW_BUFFER_IBPOOL_PREALLOC_BUFFERS)); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1847 | |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 1848 | fDrawBuffer = SkNEW_ARGS(GrInOrderDrawBuffer, (fGpu, |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 1849 | fDrawBufferVBAllocPool, |
| 1850 | fDrawBufferIBAllocPool)); |
| bsalomon@google.com | 3c4d032 | 2012-04-03 18:04:51 +0000 | [diff] [blame] | 1851 | |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 1852 | fDrawBuffer->setDrawState(fDrawState); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1853 | } |
| 1854 | |
| bsalomon@google.com | 21c10c5 | 2013-06-13 17:44:07 +0000 | [diff] [blame] | 1855 | GrDrawTarget* GrContext::getTextTarget() { |
| commit-bot@chromium.org | 5dbb149 | 2013-10-04 16:23:58 +0000 | [diff] [blame] | 1856 | return this->prepareToDraw(NULL, BUFFERED_DRAW, NULL, NULL); |
| bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 1857 | } |
| 1858 | |
| 1859 | const GrIndexBuffer* GrContext::getQuadIndexBuffer() const { |
| 1860 | return fGpu->getQuadIndexBuffer(); |
| 1861 | } |
| bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 1862 | |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1863 | namespace { |
| 1864 | void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) { |
| 1865 | GrConfigConversionEffect::PMConversion pmToUPM; |
| 1866 | GrConfigConversionEffect::PMConversion upmToPM; |
| 1867 | GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM); |
| 1868 | *pmToUPMValue = pmToUPM; |
| 1869 | *upmToPMValue = upmToPM; |
| 1870 | } |
| 1871 | } |
| 1872 | |
| bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 1873 | const GrEffect* GrContext::createPMToUPMEffect(GrTexture* texture, |
| 1874 | bool swapRAndB, |
| 1875 | const SkMatrix& matrix) { |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1876 | if (!fDidTestPMConversions) { |
| 1877 | test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion); |
| bsalomon@google.com | d0f3f68 | 2012-08-28 13:08:14 +0000 | [diff] [blame] | 1878 | fDidTestPMConversions = true; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1879 | } |
| 1880 | GrConfigConversionEffect::PMConversion pmToUPM = |
| 1881 | static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion); |
| 1882 | if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) { |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1883 | return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix); |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1884 | } else { |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1885 | return NULL; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1886 | } |
| 1887 | } |
| 1888 | |
| bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 1889 | const GrEffect* GrContext::createUPMToPMEffect(GrTexture* texture, |
| 1890 | bool swapRAndB, |
| 1891 | const SkMatrix& matrix) { |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1892 | if (!fDidTestPMConversions) { |
| 1893 | test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion); |
| bsalomon@google.com | d0f3f68 | 2012-08-28 13:08:14 +0000 | [diff] [blame] | 1894 | fDidTestPMConversions = true; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1895 | } |
| 1896 | GrConfigConversionEffect::PMConversion upmToPM = |
| 1897 | static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion); |
| 1898 | if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) { |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1899 | return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix); |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1900 | } else { |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 1901 | return NULL; |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1902 | } |
| 1903 | } |
| 1904 | |
| commit-bot@chromium.org | 5c8ee25 | 2013-11-01 15:23:44 +0000 | [diff] [blame] | 1905 | GrPath* GrContext::createPath(const SkPath& inPath, const SkStrokeRec& stroke) { |
| 1906 | SkASSERT(fGpu->caps()->pathRenderingSupport()); |
| 1907 | |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 1908 | // TODO: now we add to fResourceCache. This should change to fResourceCache. |
| commit-bot@chromium.org | 5c8ee25 | 2013-11-01 15:23:44 +0000 | [diff] [blame] | 1909 | GrResourceKey resourceKey = GrPath::ComputeKey(inPath, stroke); |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 1910 | GrPath* path = static_cast<GrPath*>(fResourceCache->find(resourceKey)); |
| commit-bot@chromium.org | 5c8ee25 | 2013-11-01 15:23:44 +0000 | [diff] [blame] | 1911 | if (NULL != path && path->isEqualTo(inPath, stroke)) { |
| 1912 | path->ref(); |
| 1913 | } else { |
| 1914 | path = fGpu->createPath(inPath, stroke); |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 1915 | fResourceCache->purgeAsNeeded(1, path->gpuMemorySize()); |
| 1916 | fResourceCache->addResource(resourceKey, path); |
| commit-bot@chromium.org | 5c8ee25 | 2013-11-01 15:23:44 +0000 | [diff] [blame] | 1917 | } |
| 1918 | return path; |
| 1919 | } |
| 1920 | |
| bsalomon | 6d3fe02 | 2014-07-25 08:35:45 -0700 | [diff] [blame] | 1921 | void GrContext::addResourceToCache(const GrResourceKey& resourceKey, GrGpuResource* resource) { |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 1922 | fResourceCache->purgeAsNeeded(1, resource->gpuMemorySize()); |
| 1923 | fResourceCache->addResource(resourceKey, resource); |
| commit-bot@chromium.org | 95a2b0e | 2014-05-05 19:21:16 +0000 | [diff] [blame] | 1924 | } |
| 1925 | |
| bsalomon | 6d3fe02 | 2014-07-25 08:35:45 -0700 | [diff] [blame] | 1926 | GrGpuResource* GrContext::findAndRefCachedResource(const GrResourceKey& resourceKey) { |
| 1927 | GrGpuResource* resource = fResourceCache->find(resourceKey); |
| commit-bot@chromium.org | 95a2b0e | 2014-05-05 19:21:16 +0000 | [diff] [blame] | 1928 | SkSafeRef(resource); |
| 1929 | return resource; |
| 1930 | } |
| 1931 | |
| egdaniel | bbcb38d | 2014-06-19 10:19:29 -0700 | [diff] [blame] | 1932 | void GrContext::addGpuTraceMarker(const GrGpuTraceMarker* marker) { |
| 1933 | fGpu->addGpuTraceMarker(marker); |
| 1934 | if (NULL != fDrawBuffer) { |
| 1935 | fDrawBuffer->addGpuTraceMarker(marker); |
| 1936 | } |
| 1937 | } |
| 1938 | |
| 1939 | void GrContext::removeGpuTraceMarker(const GrGpuTraceMarker* marker) { |
| 1940 | fGpu->removeGpuTraceMarker(marker); |
| 1941 | if (NULL != fDrawBuffer) { |
| 1942 | fDrawBuffer->removeGpuTraceMarker(marker); |
| 1943 | } |
| 1944 | } |
| 1945 | |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1946 | /////////////////////////////////////////////////////////////////////////////// |
| robertphillips@google.com | 5955202 | 2012-08-31 13:07:37 +0000 | [diff] [blame] | 1947 | #if GR_CACHE_STATS |
| robertphillips@google.com | 5f9f2f5 | 2012-08-22 10:57:05 +0000 | [diff] [blame] | 1948 | void GrContext::printCacheStats() const { |
| commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 1949 | fResourceCache->printStats(); |
| robertphillips@google.com | 5f9f2f5 | 2012-08-22 10:57:05 +0000 | [diff] [blame] | 1950 | } |
| 1951 | #endif |