bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "GrResourceProvider.h" |
| 9 | |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 10 | #include "GrBuffer.h" |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 11 | #include "GrGpu.h" |
kkinnunen | cabe20c | 2015-06-01 01:37:26 -0700 | [diff] [blame] | 12 | #include "GrPathRendering.h" |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 13 | #include "GrRenderTarget.h" |
| 14 | #include "GrRenderTargetPriv.h" |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 15 | #include "GrResourceCache.h" |
| 16 | #include "GrResourceKey.h" |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 17 | #include "GrStencilAttachment.h" |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 18 | |
| 19 | GR_DECLARE_STATIC_UNIQUE_KEY(gQuadIndexBufferKey); |
| 20 | |
joshualitt | 6d0872d | 2016-01-11 08:27:48 -0800 | [diff] [blame] | 21 | GrResourceProvider::GrResourceProvider(GrGpu* gpu, GrResourceCache* cache, GrSingleOwner* owner) |
| 22 | : INHERITED(gpu, cache, owner) { |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 23 | GR_DEFINE_STATIC_UNIQUE_KEY(gQuadIndexBufferKey); |
| 24 | fQuadIndexBufferKey = gQuadIndexBufferKey; |
| 25 | } |
| 26 | |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 27 | const GrBuffer* GrResourceProvider::createInstancedIndexBuffer(const uint16_t* pattern, |
| 28 | int patternSize, |
| 29 | int reps, |
| 30 | int vertCount, |
| 31 | const GrUniqueKey& key) { |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 32 | size_t bufferSize = patternSize * reps * sizeof(uint16_t); |
| 33 | |
bsalomon | eae6200 | 2015-07-31 13:59:30 -0700 | [diff] [blame] | 34 | // This is typically used in GrBatchs, so we assume kNoPendingIO. |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 35 | GrBuffer* buffer = this->createBuffer(kIndex_GrBufferType, bufferSize, kStatic_GrAccessPattern, |
| 36 | kNoPendingIO_Flag); |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 37 | if (!buffer) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 38 | return nullptr; |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 39 | } |
| 40 | uint16_t* data = (uint16_t*) buffer->map(); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 41 | bool useTempData = (nullptr == data); |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 42 | if (useTempData) { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 43 | data = new uint16_t[reps * patternSize]; |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 44 | } |
| 45 | for (int i = 0; i < reps; ++i) { |
| 46 | int baseIdx = i * patternSize; |
| 47 | uint16_t baseVert = (uint16_t)(i * vertCount); |
| 48 | for (int j = 0; j < patternSize; ++j) { |
| 49 | data[baseIdx+j] = baseVert + pattern[j]; |
| 50 | } |
| 51 | } |
| 52 | if (useTempData) { |
| 53 | if (!buffer->updateData(data, bufferSize)) { |
| 54 | buffer->unref(); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 55 | return nullptr; |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 56 | } |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 57 | delete[] data; |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 58 | } else { |
| 59 | buffer->unmap(); |
| 60 | } |
| 61 | this->assignUniqueKeyToResource(key, buffer); |
| 62 | return buffer; |
| 63 | } |
| 64 | |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 65 | const GrBuffer* GrResourceProvider::createQuadIndexBuffer() { |
bsalomon | ed0bcad | 2015-05-04 10:36:42 -0700 | [diff] [blame] | 66 | static const int kMaxQuads = 1 << 12; // max possible: (1 << 14) - 1; |
| 67 | GR_STATIC_ASSERT(4 * kMaxQuads <= 65535); |
| 68 | static const uint16_t kPattern[] = { 0, 1, 2, 0, 2, 3 }; |
| 69 | |
| 70 | return this->createInstancedIndexBuffer(kPattern, 6, kMaxQuads, 4, fQuadIndexBufferKey); |
| 71 | } |
| 72 | |
bsalomon | 706f08f | 2015-05-22 07:35:58 -0700 | [diff] [blame] | 73 | GrPath* GrResourceProvider::createPath(const SkPath& path, const GrStrokeInfo& stroke) { |
| 74 | SkASSERT(this->gpu()->pathRendering()); |
| 75 | return this->gpu()->pathRendering()->createPath(path, stroke); |
| 76 | } |
| 77 | |
| 78 | GrPathRange* GrResourceProvider::createPathRange(GrPathRange::PathGenerator* gen, |
| 79 | const GrStrokeInfo& stroke) { |
| 80 | SkASSERT(this->gpu()->pathRendering()); |
| 81 | return this->gpu()->pathRendering()->createPathRange(gen, stroke); |
| 82 | } |
| 83 | |
| 84 | GrPathRange* GrResourceProvider::createGlyphs(const SkTypeface* tf, const SkDescriptor* desc, |
| 85 | const GrStrokeInfo& stroke) { |
| 86 | |
| 87 | SkASSERT(this->gpu()->pathRendering()); |
| 88 | return this->gpu()->pathRendering()->createGlyphs(tf, desc, stroke); |
| 89 | } |
| 90 | |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 91 | GrBuffer* GrResourceProvider::createBuffer(GrBufferType type, size_t size, |
| 92 | GrAccessPattern accessPattern, uint32_t flags) { |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 93 | if (this->isAbandoned()) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 94 | return nullptr; |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 95 | } |
| 96 | |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 97 | if (kDynamic_GrAccessPattern == accessPattern) { |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 98 | // bin by pow2 with a reasonable min |
| 99 | static const uint32_t MIN_SIZE = 1 << 12; |
| 100 | size = SkTMax(MIN_SIZE, GrNextPow2(SkToUInt(size))); |
| 101 | |
| 102 | GrScratchKey key; |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 103 | GrBuffer::ComputeScratchKeyForDynamicBuffer(type, size, &key); |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 104 | uint32_t scratchFlags = 0; |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 105 | if (flags & kNoPendingIO_Flag) { |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 106 | scratchFlags = GrResourceCache::kRequireNoPendingIO_ScratchFlag; |
| 107 | } else { |
| 108 | scratchFlags = GrResourceCache::kPreferNoPendingIO_ScratchFlag; |
| 109 | } |
robertphillips | 6e83ac7 | 2015-08-13 05:19:14 -0700 | [diff] [blame] | 110 | GrGpuResource* resource = this->cache()->findAndRefScratchResource(key, size, scratchFlags); |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 111 | if (resource) { |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 112 | return static_cast<GrBuffer*>(resource); |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 113 | } |
| 114 | } |
cdalton | 8b1bff2 | 2016-03-25 01:54:54 -0700 | [diff] [blame^] | 115 | return this->gpu()->createBuffer(type, size, accessPattern); |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 116 | } |
| 117 | |
joshualitt | b356cbc | 2015-08-05 06:36:39 -0700 | [diff] [blame] | 118 | GrBatchAtlas* GrResourceProvider::createAtlas(GrPixelConfig config, |
| 119 | int width, int height, |
| 120 | int numPlotsX, int numPlotsY, |
| 121 | GrBatchAtlas::EvictionFunc func, void* data) { |
| 122 | GrSurfaceDesc desc; |
| 123 | desc.fFlags = kNone_GrSurfaceFlags; |
| 124 | desc.fWidth = width; |
| 125 | desc.fHeight = height; |
| 126 | desc.fConfig = config; |
| 127 | |
| 128 | // We don't want to flush the context so we claim we're in the middle of flushing so as to |
| 129 | // guarantee we do not recieve a texture with pending IO |
halcanary | 6950de6 | 2015-11-07 05:29:00 -0800 | [diff] [blame] | 130 | // TODO: Determine how to avoid having to do this. (https://bug.skia.org/4156) |
joshualitt | b356cbc | 2015-08-05 06:36:39 -0700 | [diff] [blame] | 131 | static const uint32_t kFlags = GrResourceProvider::kNoPendingIO_Flag; |
| 132 | GrTexture* texture = this->createApproxTexture(desc, kFlags); |
| 133 | if (!texture) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 134 | return nullptr; |
joshualitt | b356cbc | 2015-08-05 06:36:39 -0700 | [diff] [blame] | 135 | } |
joshualitt | 8377e80 | 2015-11-05 07:14:56 -0800 | [diff] [blame] | 136 | GrBatchAtlas* atlas = new GrBatchAtlas(texture, numPlotsX, numPlotsY); |
| 137 | atlas->registerEvictionCallback(func, data); |
| 138 | return atlas; |
joshualitt | b356cbc | 2015-08-05 06:36:39 -0700 | [diff] [blame] | 139 | } |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 140 | |
| 141 | GrStencilAttachment* GrResourceProvider::attachStencilAttachment(GrRenderTarget* rt) { |
| 142 | SkASSERT(rt); |
| 143 | if (rt->renderTargetPriv().getStencilAttachment()) { |
| 144 | return rt->renderTargetPriv().getStencilAttachment(); |
| 145 | } |
| 146 | |
| 147 | if (!rt->wasDestroyed() && rt->canAttemptStencilAttachment()) { |
| 148 | GrUniqueKey sbKey; |
| 149 | |
| 150 | int width = rt->width(); |
| 151 | int height = rt->height(); |
| 152 | #if 0 |
| 153 | if (this->caps()->oversizedStencilSupport()) { |
| 154 | width = SkNextPow2(width); |
| 155 | height = SkNextPow2(height); |
| 156 | } |
| 157 | #endif |
| 158 | bool newStencil = false; |
| 159 | GrStencilAttachment::ComputeSharedStencilAttachmentKey(width, height, |
| 160 | rt->numStencilSamples(), &sbKey); |
| 161 | GrStencilAttachment* stencil = static_cast<GrStencilAttachment*>( |
| 162 | this->findAndRefResourceByUniqueKey(sbKey)); |
| 163 | if (!stencil) { |
| 164 | // Need to try and create a new stencil |
| 165 | stencil = this->gpu()->createStencilAttachmentForRenderTarget(rt, width, height); |
| 166 | if (stencil) { |
| 167 | stencil->resourcePriv().setUniqueKey(sbKey); |
| 168 | newStencil = true; |
| 169 | } |
| 170 | } |
| 171 | if (rt->renderTargetPriv().attachStencilAttachment(stencil)) { |
| 172 | if (newStencil) { |
| 173 | // Right now we're clearing the stencil attachment here after it is |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 174 | // attached to a RT for the first time. When we start matching |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 175 | // stencil buffers with smaller color targets this will no longer |
| 176 | // be correct because it won't be guaranteed to clear the entire |
| 177 | // sb. |
| 178 | // We used to clear down in the GL subclass using a special purpose |
| 179 | // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported |
| 180 | // FBO status. |
| 181 | this->gpu()->clearStencil(rt); |
| 182 | } |
| 183 | } |
| 184 | } |
| 185 | return rt->renderTargetPriv().getStencilAttachment(); |
| 186 | } |
| 187 | |
ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 188 | GrRenderTarget* GrResourceProvider::wrapBackendTextureAsRenderTarget( |
| 189 | const GrBackendTextureDesc& desc, GrWrapOwnership ownership) { |
| 190 | if (this->isAbandoned()) { |
| 191 | return nullptr; |
| 192 | } |
| 193 | return this->gpu()->wrapBackendTextureAsRenderTarget(desc, ownership); |
| 194 | } |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 195 | |