blob: 9a2fff31418eb5b53610eb7d75ab8b865b3bc7f6 [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 }
99
cdalton397536c2016-03-25 12:15:03 -0700100 if (kDynamic_GrAccessPattern == accessPattern) {
robertphillips1b8e1b52015-06-24 06:54:10 -0700101 // bin by pow2 with a reasonable min
102 static const uint32_t MIN_SIZE = 1 << 12;
103 size = SkTMax(MIN_SIZE, GrNextPow2(SkToUInt(size)));
104
105 GrScratchKey key;
cdaltone2e71c22016-04-07 18:13:29 -0700106 GrBuffer::ComputeScratchKeyForDynamicBuffer(size, intendedType, &key);
robertphillips1b8e1b52015-06-24 06:54:10 -0700107 uint32_t scratchFlags = 0;
cdalton397536c2016-03-25 12:15:03 -0700108 if (flags & kNoPendingIO_Flag) {
robertphillips1b8e1b52015-06-24 06:54:10 -0700109 scratchFlags = GrResourceCache::kRequireNoPendingIO_ScratchFlag;
110 } else {
111 scratchFlags = GrResourceCache::kPreferNoPendingIO_ScratchFlag;
112 }
robertphillips6e83ac72015-08-13 05:19:14 -0700113 GrGpuResource* resource = this->cache()->findAndRefScratchResource(key, size, scratchFlags);
cdalton1bf3e712016-04-19 10:00:02 -0700114 if (GrBuffer* buffer = static_cast<GrBuffer*>(resource)) {
115 if (data) {
116 buffer->updateData(data, size);
117 }
118 return buffer;
robertphillips1b8e1b52015-06-24 06:54:10 -0700119 }
120 }
cdalton1bf3e712016-04-19 10:00:02 -0700121 return this->gpu()->createBuffer(size, intendedType, accessPattern, data);
jvanverth17aa0472016-01-05 10:41:27 -0800122}
123
joshualittb356cbc2015-08-05 06:36:39 -0700124GrBatchAtlas* GrResourceProvider::createAtlas(GrPixelConfig config,
125 int width, int height,
126 int numPlotsX, int numPlotsY,
127 GrBatchAtlas::EvictionFunc func, void* data) {
128 GrSurfaceDesc desc;
129 desc.fFlags = kNone_GrSurfaceFlags;
130 desc.fWidth = width;
131 desc.fHeight = height;
132 desc.fConfig = config;
133
134 // We don't want to flush the context so we claim we're in the middle of flushing so as to
135 // guarantee we do not recieve a texture with pending IO
halcanary6950de62015-11-07 05:29:00 -0800136 // TODO: Determine how to avoid having to do this. (https://bug.skia.org/4156)
joshualittb356cbc2015-08-05 06:36:39 -0700137 static const uint32_t kFlags = GrResourceProvider::kNoPendingIO_Flag;
138 GrTexture* texture = this->createApproxTexture(desc, kFlags);
139 if (!texture) {
halcanary96fcdcc2015-08-27 07:41:13 -0700140 return nullptr;
joshualittb356cbc2015-08-05 06:36:39 -0700141 }
jvanverthc3d706f2016-04-20 10:33:27 -0700142 GrBatchAtlas* atlas = new GrBatchAtlas(texture, numPlotsX, numPlotsY);
joshualitt8377e802015-11-05 07:14:56 -0800143 atlas->registerEvictionCallback(func, data);
144 return atlas;
joshualittb356cbc2015-08-05 06:36:39 -0700145}
egdanielec00d942015-09-14 12:56:10 -0700146
147GrStencilAttachment* GrResourceProvider::attachStencilAttachment(GrRenderTarget* rt) {
148 SkASSERT(rt);
149 if (rt->renderTargetPriv().getStencilAttachment()) {
150 return rt->renderTargetPriv().getStencilAttachment();
151 }
152
153 if (!rt->wasDestroyed() && rt->canAttemptStencilAttachment()) {
154 GrUniqueKey sbKey;
155
156 int width = rt->width();
157 int height = rt->height();
158#if 0
159 if (this->caps()->oversizedStencilSupport()) {
160 width = SkNextPow2(width);
161 height = SkNextPow2(height);
162 }
163#endif
164 bool newStencil = false;
165 GrStencilAttachment::ComputeSharedStencilAttachmentKey(width, height,
166 rt->numStencilSamples(), &sbKey);
167 GrStencilAttachment* stencil = static_cast<GrStencilAttachment*>(
168 this->findAndRefResourceByUniqueKey(sbKey));
169 if (!stencil) {
170 // Need to try and create a new stencil
171 stencil = this->gpu()->createStencilAttachmentForRenderTarget(rt, width, height);
172 if (stencil) {
173 stencil->resourcePriv().setUniqueKey(sbKey);
174 newStencil = true;
175 }
176 }
177 if (rt->renderTargetPriv().attachStencilAttachment(stencil)) {
178 if (newStencil) {
179 // Right now we're clearing the stencil attachment here after it is
bsalomon7ea33f52015-11-22 14:51:00 -0800180 // attached to a RT for the first time. When we start matching
egdanielec00d942015-09-14 12:56:10 -0700181 // stencil buffers with smaller color targets this will no longer
182 // be correct because it won't be guaranteed to clear the entire
183 // sb.
184 // We used to clear down in the GL subclass using a special purpose
185 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
186 // FBO status.
187 this->gpu()->clearStencil(rt);
188 }
189 }
190 }
191 return rt->renderTargetPriv().getStencilAttachment();
192}
193
ericrkf7b8b8a2016-02-24 14:49:51 -0800194GrRenderTarget* GrResourceProvider::wrapBackendTextureAsRenderTarget(
kkinnunen49c4c222016-04-01 04:50:37 -0700195 const GrBackendTextureDesc& desc) {
ericrkf7b8b8a2016-02-24 14:49:51 -0800196 if (this->isAbandoned()) {
197 return nullptr;
198 }
kkinnunen49c4c222016-04-01 04:50:37 -0700199 return this->gpu()->wrapBackendTextureAsRenderTarget(desc);
ericrkf7b8b8a2016-02-24 14:49:51 -0800200}