blob: f57d7eb79652b4d57a0b690749110c4b95ab5780 [file] [log] [blame]
bsalomoned0bcad2015-05-04 10:36:42 -07001/*
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
cdalton397536c2016-03-25 12:15:03 -070010#include "GrBuffer.h"
bsalomoned0bcad2015-05-04 10:36:42 -070011#include "GrGpu.h"
kkinnunencabe20c2015-06-01 01:37:26 -070012#include "GrPathRendering.h"
egdanielec00d942015-09-14 12:56:10 -070013#include "GrRenderTarget.h"
14#include "GrRenderTargetPriv.h"
bsalomoned0bcad2015-05-04 10:36:42 -070015#include "GrResourceCache.h"
16#include "GrResourceKey.h"
egdanielec00d942015-09-14 12:56:10 -070017#include "GrStencilAttachment.h"
bsalomoned0bcad2015-05-04 10:36:42 -070018
19GR_DECLARE_STATIC_UNIQUE_KEY(gQuadIndexBufferKey);
20
joshualitt6d0872d2016-01-11 08:27:48 -080021GrResourceProvider::GrResourceProvider(GrGpu* gpu, GrResourceCache* cache, GrSingleOwner* owner)
22 : INHERITED(gpu, cache, owner) {
bsalomoned0bcad2015-05-04 10:36:42 -070023 GR_DEFINE_STATIC_UNIQUE_KEY(gQuadIndexBufferKey);
24 fQuadIndexBufferKey = gQuadIndexBufferKey;
25}
26
cdalton397536c2016-03-25 12:15:03 -070027const GrBuffer* GrResourceProvider::createInstancedIndexBuffer(const uint16_t* pattern,
28 int patternSize,
29 int reps,
30 int vertCount,
31 const GrUniqueKey& key) {
bsalomoned0bcad2015-05-04 10:36:42 -070032 size_t bufferSize = patternSize * reps * sizeof(uint16_t);
33
bsalomoneae62002015-07-31 13:59:30 -070034 // This is typically used in GrBatchs, so we assume kNoPendingIO.
cdaltone2e71c22016-04-07 18:13:29 -070035 GrBuffer* buffer = this->createBuffer(bufferSize, kIndex_GrBufferType, kStatic_GrAccessPattern,
cdalton397536c2016-03-25 12:15:03 -070036 kNoPendingIO_Flag);
bsalomoned0bcad2015-05-04 10:36:42 -070037 if (!buffer) {
halcanary96fcdcc2015-08-27 07:41:13 -070038 return nullptr;
bsalomoned0bcad2015-05-04 10:36:42 -070039 }
40 uint16_t* data = (uint16_t*) buffer->map();
halcanary96fcdcc2015-08-27 07:41:13 -070041 bool useTempData = (nullptr == data);
bsalomoned0bcad2015-05-04 10:36:42 -070042 if (useTempData) {
halcanary385fe4d2015-08-26 13:07:48 -070043 data = new uint16_t[reps * patternSize];
bsalomoned0bcad2015-05-04 10:36:42 -070044 }
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();
halcanary96fcdcc2015-08-27 07:41:13 -070055 return nullptr;
bsalomoned0bcad2015-05-04 10:36:42 -070056 }
halcanary385fe4d2015-08-26 13:07:48 -070057 delete[] data;
bsalomoned0bcad2015-05-04 10:36:42 -070058 } else {
59 buffer->unmap();
60 }
61 this->assignUniqueKeyToResource(key, buffer);
62 return buffer;
63}
64
cdalton397536c2016-03-25 12:15:03 -070065const GrBuffer* GrResourceProvider::createQuadIndexBuffer() {
bsalomoned0bcad2015-05-04 10:36:42 -070066 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
bsalomon706f08f2015-05-22 07:35:58 -070073GrPath* GrResourceProvider::createPath(const SkPath& path, const GrStrokeInfo& stroke) {
74 SkASSERT(this->gpu()->pathRendering());
75 return this->gpu()->pathRendering()->createPath(path, stroke);
76}
77
78GrPathRange* GrResourceProvider::createPathRange(GrPathRange::PathGenerator* gen,
79 const GrStrokeInfo& stroke) {
80 SkASSERT(this->gpu()->pathRendering());
81 return this->gpu()->pathRendering()->createPathRange(gen, stroke);
82}
83
reeda9322c22016-04-12 06:47:05 -070084GrPathRange* GrResourceProvider::createGlyphs(const SkTypeface* tf,
85 const SkScalerContextEffects& effects,
86 const SkDescriptor* desc,
bsalomon706f08f2015-05-22 07:35:58 -070087 const GrStrokeInfo& stroke) {
88
89 SkASSERT(this->gpu()->pathRendering());
reeda9322c22016-04-12 06:47:05 -070090 return this->gpu()->pathRendering()->createGlyphs(tf, effects, desc, stroke);
bsalomon706f08f2015-05-22 07:35:58 -070091}
92
cdaltone2e71c22016-04-07 18:13:29 -070093GrBuffer* GrResourceProvider::createBuffer(size_t size, GrBufferType intendedType,
cdalton1bf3e712016-04-19 10:00:02 -070094 GrAccessPattern accessPattern, uint32_t flags,
95 const void* data) {
robertphillips1b8e1b52015-06-24 06:54:10 -070096 if (this->isAbandoned()) {
halcanary96fcdcc2015-08-27 07:41:13 -070097 return nullptr;
robertphillips1b8e1b52015-06-24 06:54:10 -070098 }
cdaltond37fe762016-04-21 07:41:50 -070099 if (kDynamic_GrAccessPattern != accessPattern) {
100 return this->gpu()->createBuffer(size, intendedType, accessPattern, data);
101 }
robertphillips1b8e1b52015-06-24 06:54:10 -0700102
cdaltond37fe762016-04-21 07:41:50 -0700103 // bin by pow2 with a reasonable min
104 static const uint32_t MIN_SIZE = 1 << 12;
105 size_t allocSize = SkTMax(MIN_SIZE, GrNextPow2(SkToUInt(size)));
robertphillips1b8e1b52015-06-24 06:54:10 -0700106
cdaltond37fe762016-04-21 07:41:50 -0700107 GrScratchKey key;
108 GrBuffer::ComputeScratchKeyForDynamicBuffer(allocSize, intendedType, &key);
109 uint32_t scratchFlags = 0;
110 if (flags & kNoPendingIO_Flag) {
111 scratchFlags = GrResourceCache::kRequireNoPendingIO_ScratchFlag;
112 } else {
113 scratchFlags = GrResourceCache::kPreferNoPendingIO_ScratchFlag;
114 }
115 GrBuffer* buffer = static_cast<GrBuffer*>(
116 this->cache()->findAndRefScratchResource(key, allocSize, scratchFlags));
117 if (!buffer) {
118 buffer = this->gpu()->createBuffer(allocSize, intendedType, kDynamic_GrAccessPattern);
119 if (!buffer) {
120 return nullptr;
robertphillips1b8e1b52015-06-24 06:54:10 -0700121 }
122 }
cdaltond37fe762016-04-21 07:41:50 -0700123 if (data) {
124 buffer->updateData(data, size);
125 }
126 return buffer;
jvanverth17aa0472016-01-05 10:41:27 -0800127}
128
joshualittb356cbc2015-08-05 06:36:39 -0700129GrBatchAtlas* GrResourceProvider::createAtlas(GrPixelConfig config,
130 int width, int height,
131 int numPlotsX, int numPlotsY,
132 GrBatchAtlas::EvictionFunc func, void* data) {
133 GrSurfaceDesc desc;
134 desc.fFlags = kNone_GrSurfaceFlags;
135 desc.fWidth = width;
136 desc.fHeight = height;
137 desc.fConfig = config;
138
139 // We don't want to flush the context so we claim we're in the middle of flushing so as to
140 // guarantee we do not recieve a texture with pending IO
halcanary6950de62015-11-07 05:29:00 -0800141 // TODO: Determine how to avoid having to do this. (https://bug.skia.org/4156)
joshualittb356cbc2015-08-05 06:36:39 -0700142 static const uint32_t kFlags = GrResourceProvider::kNoPendingIO_Flag;
143 GrTexture* texture = this->createApproxTexture(desc, kFlags);
144 if (!texture) {
halcanary96fcdcc2015-08-27 07:41:13 -0700145 return nullptr;
joshualittb356cbc2015-08-05 06:36:39 -0700146 }
jvanverthc3d706f2016-04-20 10:33:27 -0700147 GrBatchAtlas* atlas = new GrBatchAtlas(texture, numPlotsX, numPlotsY);
joshualitt8377e802015-11-05 07:14:56 -0800148 atlas->registerEvictionCallback(func, data);
149 return atlas;
joshualittb356cbc2015-08-05 06:36:39 -0700150}
egdanielec00d942015-09-14 12:56:10 -0700151
152GrStencilAttachment* GrResourceProvider::attachStencilAttachment(GrRenderTarget* rt) {
153 SkASSERT(rt);
154 if (rt->renderTargetPriv().getStencilAttachment()) {
155 return rt->renderTargetPriv().getStencilAttachment();
156 }
157
158 if (!rt->wasDestroyed() && rt->canAttemptStencilAttachment()) {
159 GrUniqueKey sbKey;
160
161 int width = rt->width();
162 int height = rt->height();
163#if 0
164 if (this->caps()->oversizedStencilSupport()) {
165 width = SkNextPow2(width);
166 height = SkNextPow2(height);
167 }
168#endif
169 bool newStencil = false;
170 GrStencilAttachment::ComputeSharedStencilAttachmentKey(width, height,
171 rt->numStencilSamples(), &sbKey);
172 GrStencilAttachment* stencil = static_cast<GrStencilAttachment*>(
173 this->findAndRefResourceByUniqueKey(sbKey));
174 if (!stencil) {
175 // Need to try and create a new stencil
176 stencil = this->gpu()->createStencilAttachmentForRenderTarget(rt, width, height);
177 if (stencil) {
178 stencil->resourcePriv().setUniqueKey(sbKey);
179 newStencil = true;
180 }
181 }
182 if (rt->renderTargetPriv().attachStencilAttachment(stencil)) {
183 if (newStencil) {
184 // Right now we're clearing the stencil attachment here after it is
bsalomon7ea33f52015-11-22 14:51:00 -0800185 // attached to a RT for the first time. When we start matching
egdanielec00d942015-09-14 12:56:10 -0700186 // stencil buffers with smaller color targets this will no longer
187 // be correct because it won't be guaranteed to clear the entire
188 // sb.
189 // We used to clear down in the GL subclass using a special purpose
190 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
191 // FBO status.
192 this->gpu()->clearStencil(rt);
193 }
194 }
195 }
196 return rt->renderTargetPriv().getStencilAttachment();
197}
198
ericrkf7b8b8a2016-02-24 14:49:51 -0800199GrRenderTarget* GrResourceProvider::wrapBackendTextureAsRenderTarget(
kkinnunen49c4c222016-04-01 04:50:37 -0700200 const GrBackendTextureDesc& desc) {
ericrkf7b8b8a2016-02-24 14:49:51 -0800201 if (this->isAbandoned()) {
202 return nullptr;
203 }
kkinnunen49c4c222016-04-01 04:50:37 -0700204 return this->gpu()->wrapBackendTextureAsRenderTarget(desc);
ericrkf7b8b8a2016-02-24 14:49:51 -0800205}