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 | |
bsalomon@google.com | 1fadb20 | 2011-12-12 16:10:08 +0000 | [diff] [blame] | 9 | #include "GrContext.h" |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 10 | #include "GrContextOptions.h" |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 11 | #include "GrDrawingManager.h" |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 12 | #include "GrDrawContext.h" |
robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 13 | #include "GrLayerCache.h" |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 14 | #include "GrResourceCache.h" |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 15 | #include "GrResourceProvider.h" |
robertphillips@google.com | 72176b2 | 2012-05-23 13:19:12 +0000 | [diff] [blame] | 16 | #include "GrSoftwarePathRenderer.h" |
bsalomon | afbf2d6 | 2014-09-30 12:18:44 -0700 | [diff] [blame] | 17 | #include "GrSurfacePriv.h" |
joshualitt | b7133be | 2015-04-08 09:08:31 -0700 | [diff] [blame] | 18 | #include "GrTextBlobCache.h" |
robertphillips | 3dc6ae5 | 2015-10-20 09:54:32 -0700 | [diff] [blame] | 19 | |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 20 | #include "SkConfig8888.h" |
bsalomon | f276ac5 | 2015-10-09 13:36:42 -0700 | [diff] [blame] | 21 | #include "SkGrPriv.h" |
joshualitt | 7441782 | 2015-08-07 11:42:16 -0700 | [diff] [blame] | 22 | |
joshualitt | 5478d42 | 2014-11-14 16:00:38 -0800 | [diff] [blame] | 23 | #include "effects/GrConfigConversionEffect.h" |
joshualitt | 5478d42 | 2014-11-14 16:00:38 -0800 | [diff] [blame] | 24 | |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 25 | #define ASSERT_OWNED_RESOURCE(R) SkASSERT(!(R) || (R)->getContext() == this) |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 26 | #define RETURN_IF_ABANDONED if (fDrawingManager->abandoned()) { return; } |
| 27 | #define RETURN_FALSE_IF_ABANDONED if (fDrawingManager->abandoned()) { return false; } |
| 28 | #define RETURN_NULL_IF_ABANDONED if (fDrawingManager->abandoned()) { return nullptr; } |
bsalomon@google.com | bc4b654 | 2011-11-19 13:56:11 +0000 | [diff] [blame] | 29 | |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 30 | //////////////////////////////////////////////////////////////////////////////// |
| 31 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 32 | GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext) { |
| 33 | GrContextOptions defaultOptions; |
| 34 | return Create(backend, backendContext, defaultOptions); |
| 35 | } |
bsalomon | f28cff7 | 2015-05-22 12:25:41 -0700 | [diff] [blame] | 36 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 37 | GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext, |
| 38 | const GrContextOptions& options) { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 39 | GrContext* context = new GrContext; |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 40 | |
| 41 | if (context->init(backend, backendContext, options)) { |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 42 | return context; |
| 43 | } else { |
| 44 | context->unref(); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 45 | return nullptr; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 46 | } |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 47 | } |
| 48 | |
joshualitt | 0acd0d3 | 2015-05-07 08:23:19 -0700 | [diff] [blame] | 49 | static int32_t gNextID = 1; |
| 50 | static int32_t next_id() { |
| 51 | int32_t id; |
| 52 | do { |
| 53 | id = sk_atomic_inc(&gNextID); |
| 54 | } while (id == SK_InvalidGenID); |
| 55 | return id; |
| 56 | } |
| 57 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 58 | GrContext::GrContext() : fUniqueID(next_id()) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 59 | fGpu = nullptr; |
| 60 | fCaps = nullptr; |
| 61 | fResourceCache = nullptr; |
| 62 | fResourceProvider = nullptr; |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 63 | fBatchFontCache = nullptr; |
bsalomon | f21dab9 | 2014-11-13 13:33:28 -0800 | [diff] [blame] | 64 | fFlushToReduceCacheSize = false; |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 65 | } |
| 66 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 67 | bool GrContext::init(GrBackend backend, GrBackendContext backendContext, |
| 68 | const GrContextOptions& options) { |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 69 | SkASSERT(!fGpu); |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 70 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 71 | fGpu = GrGpu::Create(backend, backendContext, options, this); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 72 | if (!fGpu) { |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 73 | return false; |
| 74 | } |
bsalomon | 69cfe95 | 2015-11-30 13:27:47 -0800 | [diff] [blame] | 75 | this->initCommon(options); |
bsalomon | 3343557 | 2014-11-05 14:47:41 -0800 | [diff] [blame] | 76 | return true; |
| 77 | } |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 78 | |
bsalomon | 69cfe95 | 2015-11-30 13:27:47 -0800 | [diff] [blame] | 79 | void GrContext::initCommon(const GrContextOptions& options) { |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 80 | fCaps = SkRef(fGpu->caps()); |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 81 | fResourceCache = new GrResourceCache(fCaps); |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 82 | fResourceCache->setOverBudgetCallback(OverBudgetCB, this); |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 83 | fResourceProvider = new GrResourceProvider(fGpu, fResourceCache); |
commit-bot@chromium.org | 1836d33 | 2013-07-16 22:55:03 +0000 | [diff] [blame] | 84 | |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 85 | fLayerCache.reset(new GrLayerCache(this)); |
robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 86 | |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 87 | fDidTestPMConversions = false; |
| 88 | |
bsalomon | 69cfe95 | 2015-11-30 13:27:47 -0800 | [diff] [blame] | 89 | GrDrawTarget::Options dtOptions; |
| 90 | dtOptions.fClipBatchToBounds = options.fClipBatchToBounds; |
bsalomon | 6dea83f | 2015-12-03 12:58:06 -0800 | [diff] [blame^] | 91 | dtOptions.fDrawBatchBounds = options.fDrawBatchBounds; |
bsalomon | 69cfe95 | 2015-11-30 13:27:47 -0800 | [diff] [blame] | 92 | fDrawingManager.reset(new GrDrawingManager(this, dtOptions)); |
joshualitt | 7c3a2f8 | 2015-03-31 13:32:05 -0700 | [diff] [blame] | 93 | |
| 94 | // GrBatchFontCache will eventually replace GrFontCache |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 95 | fBatchFontCache = new GrBatchFontCache(this); |
joshualitt | b7133be | 2015-04-08 09:08:31 -0700 | [diff] [blame] | 96 | |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 97 | fTextBlobCache.reset(new GrTextBlobCache(TextBlobCacheOverBudgetCB, this)); |
bsalomon@google.com | c0af317 | 2012-06-15 14:10:09 +0000 | [diff] [blame] | 98 | } |
| 99 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 100 | GrContext::~GrContext() { |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 101 | if (!fGpu) { |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 102 | SkASSERT(!fCaps); |
bsalomon@google.com | 733c062 | 2013-04-24 17:59:32 +0000 | [diff] [blame] | 103 | return; |
| 104 | } |
| 105 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 106 | this->flush(); |
robertphillips@google.com | 5acc0e3 | 2012-05-17 12:01:02 +0000 | [diff] [blame] | 107 | |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 108 | fDrawingManager->cleanup(); |
robertphillips | 2334fb6 | 2015-06-17 05:43:33 -0700 | [diff] [blame] | 109 | |
robertphillips@google.com | 950b1b0 | 2013-10-21 17:37:28 +0000 | [diff] [blame] | 110 | for (int i = 0; i < fCleanUpData.count(); ++i) { |
| 111 | (*fCleanUpData[i].fFunc)(this, fCleanUpData[i].fInfo); |
| 112 | } |
| 113 | |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 114 | delete fResourceProvider; |
| 115 | delete fResourceCache; |
| 116 | delete fBatchFontCache; |
robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 117 | |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 118 | fGpu->unref(); |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 119 | fCaps->unref(); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 120 | } |
| 121 | |
bsalomon | 2354f84 | 2014-07-28 13:48:36 -0700 | [diff] [blame] | 122 | void GrContext::abandonContext() { |
bsalomon | d309e7a | 2015-04-30 14:18:54 -0700 | [diff] [blame] | 123 | fResourceProvider->abandon(); |
robertphillips | 0dfa62c | 2015-11-16 06:23:31 -0800 | [diff] [blame] | 124 | |
| 125 | // Need to abandon the drawing manager first so all the render targets |
| 126 | // will be released/forgotten before they too are abandoned. |
| 127 | fDrawingManager->abandon(); |
| 128 | |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 129 | // abandon first to so destructors |
| 130 | // don't try to free the resources in the API. |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 131 | fResourceCache->abandonAll(); |
bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 132 | |
robertphillips | e337130 | 2014-09-17 06:01:06 -0700 | [diff] [blame] | 133 | fGpu->contextAbandoned(); |
bsalomon@google.com | 205d460 | 2011-04-25 12:43:45 +0000 | [diff] [blame] | 134 | |
joshualitt | 7c3a2f8 | 2015-03-31 13:32:05 -0700 | [diff] [blame] | 135 | fBatchFontCache->freeAll(); |
robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 136 | fLayerCache->freeAll(); |
joshualitt | 26ffc00 | 2015-04-16 11:24:04 -0700 | [diff] [blame] | 137 | fTextBlobCache->freeAll(); |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 138 | } |
| 139 | |
bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 140 | void GrContext::resetContext(uint32_t state) { |
| 141 | fGpu->markContextDirty(state); |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | void GrContext::freeGpuResources() { |
| 145 | this->flush(); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 146 | |
joshualitt | 7c3a2f8 | 2015-03-31 13:32:05 -0700 | [diff] [blame] | 147 | fBatchFontCache->freeAll(); |
robertphillips@google.com | e930a07 | 2014-04-03 00:34:27 +0000 | [diff] [blame] | 148 | fLayerCache->freeAll(); |
robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 149 | |
| 150 | fDrawingManager->freeGpuResources(); |
bsalomon | 3033b9f | 2015-04-13 11:09:56 -0700 | [diff] [blame] | 151 | |
| 152 | fResourceCache->purgeAllUnlocked(); |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 153 | } |
| 154 | |
commit-bot@chromium.org | 95c2003 | 2014-05-09 14:29:32 +0000 | [diff] [blame] | 155 | void GrContext::getResourceCacheUsage(int* resourceCount, size_t* resourceBytes) const { |
bsalomon | 71cb0c2 | 2014-11-14 12:10:14 -0800 | [diff] [blame] | 156 | if (resourceCount) { |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 157 | *resourceCount = fResourceCache->getBudgetedResourceCount(); |
bsalomon | 71cb0c2 | 2014-11-14 12:10:14 -0800 | [diff] [blame] | 158 | } |
| 159 | if (resourceBytes) { |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 160 | *resourceBytes = fResourceCache->getBudgetedResourceBytes(); |
bsalomon | 71cb0c2 | 2014-11-14 12:10:14 -0800 | [diff] [blame] | 161 | } |
commit-bot@chromium.org | d8a57af | 2014-03-19 21:19:16 +0000 | [diff] [blame] | 162 | } |
| 163 | |
bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 164 | //////////////////////////////////////////////////////////////////////////////// |
| 165 | |
bsalomon | 71cb0c2 | 2014-11-14 12:10:14 -0800 | [diff] [blame] | 166 | void GrContext::OverBudgetCB(void* data) { |
bsalomon | 66a450f | 2014-11-13 13:19:10 -0800 | [diff] [blame] | 167 | SkASSERT(data); |
bsalomon | f21dab9 | 2014-11-13 13:33:28 -0800 | [diff] [blame] | 168 | |
bsalomon | 66a450f | 2014-11-13 13:19:10 -0800 | [diff] [blame] | 169 | GrContext* context = reinterpret_cast<GrContext*>(data); |
bsalomon | f21dab9 | 2014-11-13 13:33:28 -0800 | [diff] [blame] | 170 | |
joshualitt | b542bae | 2015-07-28 09:58:39 -0700 | [diff] [blame] | 171 | // Flush the GrBufferedDrawTarget to possibly free up some textures |
bsalomon | f21dab9 | 2014-11-13 13:33:28 -0800 | [diff] [blame] | 172 | context->fFlushToReduceCacheSize = true; |
commit-bot@chromium.org | cae27fe | 2013-07-10 10:14:35 +0000 | [diff] [blame] | 173 | } |
| 174 | |
joshualitt | 0db6dfa | 2015-04-10 07:01:30 -0700 | [diff] [blame] | 175 | void GrContext::TextBlobCacheOverBudgetCB(void* data) { |
| 176 | SkASSERT(data); |
| 177 | |
| 178 | // Unlike the GrResourceCache, TextBlobs are drawn at the SkGpuDevice level, therefore they |
| 179 | // cannot use fFlushTorReduceCacheSize because it uses AutoCheckFlush. The solution is to move |
| 180 | // drawText calls to below the GrContext level, but this is not trivial because they call |
| 181 | // drawPath on SkGpuDevice |
| 182 | GrContext* context = reinterpret_cast<GrContext*>(data); |
| 183 | context->flush(); |
| 184 | } |
| 185 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 186 | //////////////////////////////////////////////////////////////////////////////// |
| 187 | |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 188 | void GrContext::flush(int flagsBitfield) { |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 189 | RETURN_IF_ABANDONED |
robertphillips@google.com | e7db8d6 | 2013-07-04 11:48:52 +0000 | [diff] [blame] | 190 | |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 191 | if (kDiscard_FlushBit & flagsBitfield) { |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 192 | fDrawingManager->reset(); |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 193 | } else { |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 194 | fDrawingManager->flush(); |
junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 195 | } |
bsalomon | 3f32432 | 2015-04-08 11:01:54 -0700 | [diff] [blame] | 196 | fResourceCache->notifyFlushOccurred(); |
bsalomon | f21dab9 | 2014-11-13 13:33:28 -0800 | [diff] [blame] | 197 | fFlushToReduceCacheSize = false; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 198 | } |
| 199 | |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 200 | bool sw_convert_to_premul(GrPixelConfig srcConfig, int width, int height, size_t inRowBytes, |
| 201 | const void* inPixels, size_t outRowBytes, void* outPixels) { |
| 202 | SkSrcPixelInfo srcPI; |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 203 | if (!GrPixelConfig2ColorAndProfileType(srcConfig, &srcPI.fColorType, nullptr)) { |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 204 | return false; |
| 205 | } |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 206 | srcPI.fAlphaType = kUnpremul_SkAlphaType; |
| 207 | srcPI.fPixels = inPixels; |
| 208 | srcPI.fRowBytes = inRowBytes; |
| 209 | |
| 210 | SkDstPixelInfo dstPI; |
| 211 | dstPI.fColorType = srcPI.fColorType; |
| 212 | dstPI.fAlphaType = kPremul_SkAlphaType; |
| 213 | dstPI.fPixels = outPixels; |
| 214 | dstPI.fRowBytes = outRowBytes; |
| 215 | |
| 216 | return srcPI.convertPixelsTo(&dstPI, width, height); |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 217 | } |
| 218 | |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 219 | bool GrContext::writeSurfacePixels(GrSurface* surface, |
| 220 | int left, int top, int width, int height, |
| 221 | GrPixelConfig srcConfig, const void* buffer, size_t rowBytes, |
| 222 | uint32_t pixelOpsFlags) { |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 223 | RETURN_FALSE_IF_ABANDONED |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 224 | ASSERT_OWNED_RESOURCE(surface); |
| 225 | SkASSERT(surface); |
| 226 | |
| 227 | this->testPMConversionsIfNecessary(pixelOpsFlags); |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 228 | |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 229 | // Trim the params here so that if we wind up making a temporary surface it can be as small as |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 230 | // necessary and because GrGpu::getWritePixelsInfo requires it. |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 231 | if (!GrSurfacePriv::AdjustWritePixelParams(surface->width(), surface->height(), |
| 232 | GrBytesPerPixel(srcConfig), &left, &top, &width, |
| 233 | &height, &buffer, &rowBytes)) { |
| 234 | return false; |
| 235 | } |
| 236 | |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 237 | bool applyPremulToSrc = false; |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 238 | if (kUnpremul_PixelOpsFlag & pixelOpsFlags) { |
| 239 | if (!GrPixelConfigIs8888(srcConfig)) { |
| 240 | return false; |
| 241 | } |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 242 | applyPremulToSrc = true; |
| 243 | } |
bsalomon | 636e802 | 2015-07-29 06:08:46 -0700 | [diff] [blame] | 244 | |
| 245 | GrGpu::DrawPreference drawPreference = GrGpu::kNoDraw_DrawPreference; |
| 246 | // Don't prefer to draw for the conversion (and thereby access a texture from the cache) when |
| 247 | // we've already determined that there isn't a roundtrip preserving conversion processor pair. |
| 248 | if (applyPremulToSrc && !this->didFailPMUPMConversionTest()) { |
| 249 | drawPreference = GrGpu::kCallerPrefersDraw_DrawPreference; |
| 250 | } |
| 251 | |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 252 | GrGpu::WritePixelTempDrawInfo tempDrawInfo; |
| 253 | if (!fGpu->getWritePixelsInfo(surface, width, height, rowBytes, srcConfig, &drawPreference, |
| 254 | &tempDrawInfo)) { |
| 255 | return false; |
| 256 | } |
| 257 | |
| 258 | if (!(kDontFlush_PixelOpsFlag & pixelOpsFlags) && surface->surfacePriv().hasPendingIO()) { |
| 259 | this->flush(); |
| 260 | } |
| 261 | |
| 262 | SkAutoTUnref<GrTexture> tempTexture; |
| 263 | if (GrGpu::kNoDraw_DrawPreference != drawPreference) { |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 264 | tempTexture.reset( |
| 265 | this->textureProvider()->createApproxTexture(tempDrawInfo.fTempSurfaceDesc)); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 266 | if (!tempTexture && GrGpu::kRequireDraw_DrawPreference == drawPreference) { |
| 267 | return false; |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | // temp buffer for doing sw premul conversion, if needed. |
benjaminwagner | 7d974f5 | 2015-10-19 13:55:55 -0700 | [diff] [blame] | 272 | #if defined(GOOGLE3) |
| 273 | // Stack frame size is limited in GOOGLE3. |
| 274 | SkAutoSTMalloc<48 * 48, uint32_t> tmpPixels(0); |
| 275 | #else |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 276 | SkAutoSTMalloc<128 * 128, uint32_t> tmpPixels(0); |
benjaminwagner | 7d974f5 | 2015-10-19 13:55:55 -0700 | [diff] [blame] | 277 | #endif |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 278 | if (tempTexture) { |
| 279 | SkAutoTUnref<const GrFragmentProcessor> fp; |
| 280 | SkMatrix textureMatrix; |
| 281 | textureMatrix.setIDiv(tempTexture->width(), tempTexture->height()); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 282 | if (applyPremulToSrc) { |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 283 | fp.reset(this->createUPMToPMEffect(tempTexture, tempDrawInfo.fSwapRAndB, |
| 284 | textureMatrix)); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 285 | // If premultiplying was the only reason for the draw, fall back to a straight write. |
| 286 | if (!fp) { |
| 287 | if (GrGpu::kCallerPrefersDraw_DrawPreference == drawPreference) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 288 | tempTexture.reset(nullptr); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 289 | } |
| 290 | } else { |
| 291 | applyPremulToSrc = false; |
| 292 | } |
| 293 | } |
| 294 | if (tempTexture) { |
| 295 | if (!fp) { |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 296 | fp.reset(GrConfigConversionEffect::Create(tempTexture, tempDrawInfo.fSwapRAndB, |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 297 | GrConfigConversionEffect::kNone_PMConversion, textureMatrix)); |
| 298 | if (!fp) { |
| 299 | return false; |
| 300 | } |
| 301 | } |
| 302 | GrRenderTarget* renderTarget = surface->asRenderTarget(); |
| 303 | SkASSERT(renderTarget); |
| 304 | if (tempTexture->surfacePriv().hasPendingIO()) { |
| 305 | this->flush(); |
| 306 | } |
| 307 | if (applyPremulToSrc) { |
| 308 | size_t tmpRowBytes = 4 * width; |
| 309 | tmpPixels.reset(width * height); |
| 310 | if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes, |
| 311 | tmpPixels.get())) { |
| 312 | return false; |
| 313 | } |
| 314 | rowBytes = tmpRowBytes; |
| 315 | buffer = tmpPixels.get(); |
| 316 | applyPremulToSrc = false; |
| 317 | } |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 318 | if (!fGpu->writePixels(tempTexture, 0, 0, width, height, |
| 319 | tempDrawInfo.fTempSurfaceDesc.fConfig, buffer, |
| 320 | rowBytes)) { |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 321 | return false; |
| 322 | } |
| 323 | SkMatrix matrix; |
| 324 | matrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top)); |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 325 | SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(renderTarget)); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 326 | if (!drawContext) { |
| 327 | return false; |
| 328 | } |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 329 | GrPaint paint; |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 330 | paint.addColorFragmentProcessor(fp); |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 331 | paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 332 | SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)); |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 333 | drawContext->drawRect(GrClip::WideOpen(), paint, matrix, rect, nullptr); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 334 | |
| 335 | if (kFlushWrites_PixelOp & pixelOpsFlags) { |
| 336 | this->flushSurfaceWrites(surface); |
| 337 | } |
| 338 | } |
| 339 | } |
| 340 | if (!tempTexture) { |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 341 | if (applyPremulToSrc) { |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 342 | size_t tmpRowBytes = 4 * width; |
| 343 | tmpPixels.reset(width * height); |
| 344 | if (!sw_convert_to_premul(srcConfig, width, height, rowBytes, buffer, tmpRowBytes, |
| 345 | tmpPixels.get())) { |
| 346 | return false; |
| 347 | } |
| 348 | rowBytes = tmpRowBytes; |
| 349 | buffer = tmpPixels.get(); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 350 | applyPremulToSrc = false; |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 351 | } |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 352 | return fGpu->writePixels(surface, left, top, width, height, srcConfig, buffer, rowBytes); |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 353 | } |
bsalomon | 81beccc | 2014-10-13 12:32:55 -0700 | [diff] [blame] | 354 | return true; |
| 355 | } |
bsalomon@google.com | a91e923 | 2012-02-23 15:39:54 +0000 | [diff] [blame] | 356 | |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 357 | bool GrContext::readSurfacePixels(GrSurface* src, |
| 358 | int left, int top, int width, int height, |
| 359 | GrPixelConfig dstConfig, void* buffer, size_t rowBytes, |
| 360 | uint32_t flags) { |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 361 | RETURN_FALSE_IF_ABANDONED |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 362 | ASSERT_OWNED_RESOURCE(src); |
| 363 | SkASSERT(src); |
bsalomon | 32ab260 | 2015-09-09 18:57:49 -0700 | [diff] [blame] | 364 | |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 365 | this->testPMConversionsIfNecessary(flags); |
| 366 | SkAutoMutexAcquire ama(fReadPixelsMutex); |
| 367 | |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 368 | // Adjust the params so that if we wind up using an intermediate surface we've already done |
| 369 | // all the trimming and the temporary can be the min size required. |
| 370 | if (!GrSurfacePriv::AdjustReadPixelParams(src->width(), src->height(), |
| 371 | GrBytesPerPixel(dstConfig), &left, |
| 372 | &top, &width, &height, &buffer, &rowBytes)) { |
| 373 | return false; |
| 374 | } |
| 375 | |
| 376 | if (!(kDontFlush_PixelOpsFlag & flags) && src->surfacePriv().hasPendingWrite()) { |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 377 | this->flush(); |
| 378 | } |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 379 | |
bsalomon | e8d21e8 | 2015-07-16 08:23:13 -0700 | [diff] [blame] | 380 | bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags); |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 381 | if (unpremul && !GrPixelConfigIs8888(dstConfig)) { |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 382 | // The unpremul flag is only allowed for 8888 configs. |
bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 383 | return false; |
| 384 | } |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 385 | |
bsalomon | 636e802 | 2015-07-29 06:08:46 -0700 | [diff] [blame] | 386 | GrGpu::DrawPreference drawPreference = GrGpu::kNoDraw_DrawPreference; |
| 387 | // Don't prefer to draw for the conversion (and thereby access a texture from the cache) when |
| 388 | // we've already determined that there isn't a roundtrip preserving conversion processor pair. |
| 389 | if (unpremul && !this->didFailPMUPMConversionTest()) { |
| 390 | drawPreference = GrGpu::kCallerPrefersDraw_DrawPreference; |
| 391 | } |
| 392 | |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 393 | GrGpu::ReadPixelTempDrawInfo tempDrawInfo; |
| 394 | if (!fGpu->getReadPixelsInfo(src, width, height, rowBytes, dstConfig, &drawPreference, |
| 395 | &tempDrawInfo)) { |
| 396 | return false; |
| 397 | } |
bsalomon | 191bcc0 | 2014-11-14 11:31:13 -0800 | [diff] [blame] | 398 | |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 399 | SkAutoTUnref<GrSurface> surfaceToRead(SkRef(src)); |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 400 | bool didTempDraw = false; |
| 401 | if (GrGpu::kNoDraw_DrawPreference != drawPreference) { |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 402 | if (tempDrawInfo.fUseExactScratch) { |
| 403 | // We only respect this when the entire src is being read. Otherwise we can trigger too |
| 404 | // many odd ball texture sizes and trash the cache. |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 405 | if (width != src->width() || height != src->height()) { |
| 406 | tempDrawInfo.fUseExactScratch = false; |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 407 | } |
bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 408 | } |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 409 | SkAutoTUnref<GrTexture> temp; |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 410 | if (tempDrawInfo.fUseExactScratch) { |
| 411 | temp.reset(this->textureProvider()->createTexture(tempDrawInfo.fTempSurfaceDesc, true)); |
| 412 | } else { |
| 413 | temp.reset(this->textureProvider()->createApproxTexture(tempDrawInfo.fTempSurfaceDesc)); |
| 414 | } |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 415 | if (temp) { |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 416 | SkMatrix textureMatrix; |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 417 | textureMatrix.setTranslate(SkIntToScalar(left), SkIntToScalar(top)); |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 418 | textureMatrix.postIDiv(src->width(), src->height()); |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 419 | SkAutoTUnref<const GrFragmentProcessor> fp; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 420 | if (unpremul) { |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 421 | fp.reset(this->createPMToUPMEffect(src->asTexture(), tempDrawInfo.fSwapRAndB, |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 422 | textureMatrix)); |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 423 | if (fp) { |
bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 424 | unpremul = false; // we no longer need to do this on CPU after the read back. |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 425 | } else if (GrGpu::kCallerPrefersDraw_DrawPreference == drawPreference) { |
| 426 | // We only wanted to do the draw in order to perform the unpremul so don't |
| 427 | // bother. |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 428 | temp.reset(nullptr); |
bsalomon@google.com | d8b5fac | 2012-11-01 17:02:46 +0000 | [diff] [blame] | 429 | } |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 430 | } |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 431 | if (!fp && temp) { |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 432 | fp.reset(GrConfigConversionEffect::Create(src->asTexture(), tempDrawInfo.fSwapRAndB, |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 433 | GrConfigConversionEffect::kNone_PMConversion, textureMatrix)); |
| 434 | } |
| 435 | if (fp) { |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 436 | GrPaint paint; |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 437 | paint.addColorFragmentProcessor(fp); |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 438 | paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode); |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 439 | SkRect rect = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)); |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 440 | SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(temp->asRenderTarget())); |
| 441 | drawContext->drawRect(GrClip::WideOpen(), paint, SkMatrix::I(), rect, nullptr); |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 442 | surfaceToRead.reset(SkRef(temp.get())); |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 443 | left = 0; |
| 444 | top = 0; |
| 445 | didTempDraw = true; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 446 | } |
bsalomon@google.com | 0342a85 | 2012-08-20 19:22:38 +0000 | [diff] [blame] | 447 | } |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 448 | } |
joshualitt | 5c55fef | 2014-10-31 14:04:35 -0700 | [diff] [blame] | 449 | |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 450 | if (GrGpu::kRequireDraw_DrawPreference == drawPreference && !didTempDraw) { |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 451 | return false; |
| 452 | } |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 453 | GrPixelConfig configToRead = dstConfig; |
| 454 | if (didTempDraw) { |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 455 | this->flushSurfaceWrites(surfaceToRead); |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 456 | // We swapped R and B while doing the temp draw. Swap back on the read. |
| 457 | if (tempDrawInfo.fSwapRAndB) { |
| 458 | configToRead = GrPixelConfigSwapRAndB(dstConfig); |
| 459 | } |
| 460 | } |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 461 | if (!fGpu->readPixels(surfaceToRead, left, top, width, height, configToRead, buffer, |
| 462 | rowBytes)) { |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 463 | return false; |
| 464 | } |
| 465 | |
| 466 | // Perform umpremul conversion if we weren't able to perform it as a draw. |
| 467 | if (unpremul) { |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 468 | SkDstPixelInfo dstPI; |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 469 | if (!GrPixelConfig2ColorAndProfileType(dstConfig, &dstPI.fColorType, nullptr)) { |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 470 | return false; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 471 | } |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 472 | dstPI.fAlphaType = kUnpremul_SkAlphaType; |
| 473 | dstPI.fPixels = buffer; |
| 474 | dstPI.fRowBytes = rowBytes; |
| 475 | |
| 476 | SkSrcPixelInfo srcPI; |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 477 | srcPI.fColorType = dstPI.fColorType; |
reed@google.com | 7111d46 | 2014-03-25 16:20:24 +0000 | [diff] [blame] | 478 | srcPI.fAlphaType = kPremul_SkAlphaType; |
| 479 | srcPI.fPixels = buffer; |
| 480 | srcPI.fRowBytes = rowBytes; |
| 481 | |
| 482 | return srcPI.convertPixelsTo(&dstPI, width, height); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 483 | } |
| 484 | return true; |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 485 | } |
| 486 | |
bsalomon | c49e868 | 2015-06-30 11:37:35 -0700 | [diff] [blame] | 487 | void GrContext::prepareSurfaceForExternalIO(GrSurface* surface) { |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 488 | RETURN_IF_ABANDONED |
bsalomon | 87a94eb | 2014-11-03 14:28:32 -0800 | [diff] [blame] | 489 | SkASSERT(surface); |
| 490 | ASSERT_OWNED_RESOURCE(surface); |
| 491 | if (surface->surfacePriv().hasPendingIO()) { |
| 492 | this->flush(); |
| 493 | } |
| 494 | GrRenderTarget* rt = surface->asRenderTarget(); |
| 495 | if (fGpu && rt) { |
| 496 | fGpu->resolveRenderTarget(rt); |
bsalomon | 41ebbdd | 2014-08-04 08:31:39 -0700 | [diff] [blame] | 497 | } |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 498 | } |
| 499 | |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 500 | void GrContext::copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect, |
| 501 | const SkIPoint& dstPoint, uint32_t pixelOpsFlags) { |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 502 | RETURN_IF_ABANDONED |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 503 | if (!src || !dst) { |
senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 504 | return; |
| 505 | } |
bsalomon | e3d4bf2 | 2014-09-23 09:15:03 -0700 | [diff] [blame] | 506 | ASSERT_OWNED_RESOURCE(src); |
junov | 2bb5210 | 2014-09-29 10:18:59 -0700 | [diff] [blame] | 507 | ASSERT_OWNED_RESOURCE(dst); |
Brian Salomon | 34a9895 | 2014-09-24 11:41:24 -0400 | [diff] [blame] | 508 | |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 509 | // Since we're going to the draw target and not GPU, no need to check kNoFlush |
| 510 | // here. |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 511 | if (!dst->asRenderTarget()) { |
junov | 96c118e | 2014-09-26 13:09:47 -0700 | [diff] [blame] | 512 | return; |
| 513 | } |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 514 | |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 515 | SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(dst->asRenderTarget())); |
robertphillips | ea46150 | 2015-05-26 11:38:03 -0700 | [diff] [blame] | 516 | if (!drawContext) { |
| 517 | return; |
| 518 | } |
| 519 | |
robertphillips | 2e1e51f | 2015-10-15 08:01:48 -0700 | [diff] [blame] | 520 | drawContext->copySurface(src, srcRect, dstPoint); |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 521 | |
| 522 | if (kFlushWrites_PixelOp & pixelOpsFlags) { |
| 523 | this->flush(); |
| 524 | } |
senorblanco@chromium.org | ef843cd | 2011-12-02 19:11:17 +0000 | [diff] [blame] | 525 | } |
| 526 | |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 527 | void GrContext::flushSurfaceWrites(GrSurface* surface) { |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame] | 528 | RETURN_IF_ABANDONED |
bsalomon | f80bfed | 2014-10-07 05:56:02 -0700 | [diff] [blame] | 529 | if (surface->surfacePriv().hasPendingWrite()) { |
| 530 | this->flush(); |
| 531 | } |
| 532 | } |
| 533 | |
bsalomon@google.com | 27847de | 2011-02-22 20:59:41 +0000 | [diff] [blame] | 534 | //////////////////////////////////////////////////////////////////////////////// |
commit-bot@chromium.org | b471a32 | 2014-03-10 07:40:03 +0000 | [diff] [blame] | 535 | int GrContext::getRecommendedSampleCount(GrPixelConfig config, |
| 536 | SkScalar dpi) const { |
bsalomon | 7622863 | 2015-05-29 08:02:10 -0700 | [diff] [blame] | 537 | if (!this->caps()->isConfigRenderable(config, true)) { |
commit-bot@chromium.org | b471a32 | 2014-03-10 07:40:03 +0000 | [diff] [blame] | 538 | return 0; |
| 539 | } |
| 540 | int chosenSampleCount = 0; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 541 | if (fGpu->caps()->shaderCaps()->pathRenderingSupport()) { |
commit-bot@chromium.org | b471a32 | 2014-03-10 07:40:03 +0000 | [diff] [blame] | 542 | if (dpi >= 250.0f) { |
| 543 | chosenSampleCount = 4; |
| 544 | } else { |
| 545 | chosenSampleCount = 16; |
| 546 | } |
| 547 | } |
| 548 | return chosenSampleCount <= fGpu->caps()->maxSampleCount() ? |
| 549 | chosenSampleCount : 0; |
| 550 | } |
| 551 | |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 552 | |
| 553 | GrDrawContext* GrContext::drawContext(GrRenderTarget* rt, const SkSurfaceProps* surfaceProps) { |
| 554 | return fDrawingManager->drawContext(rt, surfaceProps); |
| 555 | } |
| 556 | |
| 557 | bool GrContext::abandoned() const { |
| 558 | return fDrawingManager->abandoned(); |
| 559 | } |
| 560 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 561 | namespace { |
| 562 | void test_pm_conversions(GrContext* ctx, int* pmToUPMValue, int* upmToPMValue) { |
| 563 | GrConfigConversionEffect::PMConversion pmToUPM; |
| 564 | GrConfigConversionEffect::PMConversion upmToPM; |
| 565 | GrConfigConversionEffect::TestForPreservingPMConversions(ctx, &pmToUPM, &upmToPM); |
| 566 | *pmToUPMValue = pmToUPM; |
| 567 | *upmToPMValue = upmToPM; |
| 568 | } |
| 569 | } |
| 570 | |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 571 | void GrContext::testPMConversionsIfNecessary(uint32_t flags) { |
| 572 | if (SkToBool(kUnpremul_PixelOpsFlag & flags)) { |
| 573 | SkAutoMutexAcquire ama(fTestPMConversionsMutex); |
| 574 | if (!fDidTestPMConversions) { |
| 575 | test_pm_conversions(this, &fPMToUPMConversion, &fUPMToPMConversion); |
| 576 | fDidTestPMConversions = true; |
| 577 | } |
| 578 | } |
| 579 | } |
| 580 | |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 581 | const GrFragmentProcessor* GrContext::createPMToUPMEffect(GrTexture* texture, |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 582 | bool swapRAndB, |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 583 | const SkMatrix& matrix) const { |
| 584 | // We should have already called this->testPMConversionsIfNecessary(). |
| 585 | SkASSERT(fDidTestPMConversions); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 586 | GrConfigConversionEffect::PMConversion pmToUPM = |
| 587 | static_cast<GrConfigConversionEffect::PMConversion>(fPMToUPMConversion); |
| 588 | if (GrConfigConversionEffect::kNone_PMConversion != pmToUPM) { |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 589 | return GrConfigConversionEffect::Create(texture, swapRAndB, pmToUPM, matrix); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 590 | } else { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 591 | return nullptr; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 592 | } |
| 593 | } |
| 594 | |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 595 | const GrFragmentProcessor* GrContext::createUPMToPMEffect(GrTexture* texture, |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 596 | bool swapRAndB, |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 597 | const SkMatrix& matrix) const { |
| 598 | // We should have already called this->testPMConversionsIfNecessary(). |
| 599 | SkASSERT(fDidTestPMConversions); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 600 | GrConfigConversionEffect::PMConversion upmToPM = |
| 601 | static_cast<GrConfigConversionEffect::PMConversion>(fUPMToPMConversion); |
| 602 | if (GrConfigConversionEffect::kNone_PMConversion != upmToPM) { |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 603 | return GrConfigConversionEffect::Create(texture, swapRAndB, upmToPM, matrix); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 604 | } else { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 605 | return nullptr; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 606 | } |
| 607 | } |
| 608 | |
bsalomon | 636e802 | 2015-07-29 06:08:46 -0700 | [diff] [blame] | 609 | bool GrContext::didFailPMUPMConversionTest() const { |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 610 | // We should have already called this->testPMConversionsIfNecessary(). |
| 611 | SkASSERT(fDidTestPMConversions); |
bsalomon | 636e802 | 2015-07-29 06:08:46 -0700 | [diff] [blame] | 612 | // The PM<->UPM tests fail or succeed together so we only need to check one. |
bsalomon | 6c6f658 | 2015-09-10 08:12:46 -0700 | [diff] [blame] | 613 | return GrConfigConversionEffect::kNone_PMConversion == fPMToUPMConversion; |
bsalomon | 636e802 | 2015-07-29 06:08:46 -0700 | [diff] [blame] | 614 | } |
| 615 | |
bsalomon | 37f9a26 | 2015-02-02 13:00:10 -0800 | [diff] [blame] | 616 | ////////////////////////////////////////////////////////////////////////////// |
| 617 | |
| 618 | void GrContext::getResourceCacheLimits(int* maxTextures, size_t* maxTextureBytes) const { |
| 619 | if (maxTextures) { |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 620 | *maxTextures = fResourceCache->getMaxResourceCount(); |
bsalomon | 37f9a26 | 2015-02-02 13:00:10 -0800 | [diff] [blame] | 621 | } |
| 622 | if (maxTextureBytes) { |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 623 | *maxTextureBytes = fResourceCache->getMaxResourceBytes(); |
bsalomon | 37f9a26 | 2015-02-02 13:00:10 -0800 | [diff] [blame] | 624 | } |
| 625 | } |
| 626 | |
| 627 | void GrContext::setResourceCacheLimits(int maxTextures, size_t maxTextureBytes) { |
bsalomon | 0ea80f4 | 2015-02-11 10:49:59 -0800 | [diff] [blame] | 628 | fResourceCache->setLimits(maxTextures, maxTextureBytes); |
bsalomon | 37f9a26 | 2015-02-02 13:00:10 -0800 | [diff] [blame] | 629 | } |
| 630 | |
ericrk | 0a5fa48 | 2015-09-15 14:16:10 -0700 | [diff] [blame] | 631 | ////////////////////////////////////////////////////////////////////////////// |
| 632 | |
| 633 | void GrContext::dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const { |
| 634 | fResourceCache->dumpMemoryStatistics(traceMemoryDump); |
| 635 | } |