blob: aa975cd07833b860b900406fd65633fee8f9222c [file] [log] [blame]
Brian Salomoncfe910d2017-07-06 16:40:18 -04001/*
2 * Copyright 2017 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "src/gpu/mock/GrMockBuffer.h"
9#include "src/gpu/mock/GrMockCaps.h"
10#include "src/gpu/mock/GrMockGpu.h"
11#include "src/gpu/mock/GrMockGpuCommandBuffer.h"
12#include "src/gpu/mock/GrMockStencilAttachment.h"
13#include "src/gpu/mock/GrMockTexture.h"
Mike Kleinde2244c2018-12-04 11:16:08 -050014#include <atomic>
Brian Salomoncfe910d2017-07-06 16:40:18 -040015
Brian Salomon8fe24272017-07-07 12:56:11 -040016int GrMockGpu::NextInternalTextureID() {
Mike Kleinde2244c2018-12-04 11:16:08 -050017 static std::atomic<int> nextID{1};
Chris Dalton351e80c2019-01-06 22:51:00 -070018 int id;
19 do {
20 id = nextID.fetch_add(1);
21 } while (0 == id); // Reserve 0 for an invalid ID.
22 return id;
Brian Salomon8fe24272017-07-07 12:56:11 -040023}
24
25int GrMockGpu::NextExternalTextureID() {
26 // We use negative ints for the "testing only external textures" so they can easily be
27 // identified when debugging.
Mike Kleinde2244c2018-12-04 11:16:08 -050028 static std::atomic<int> nextID{-1};
29 return nextID--;
Brian Salomon8fe24272017-07-07 12:56:11 -040030}
31
Brian Salomon0c51eea2018-03-09 17:02:09 -050032int GrMockGpu::NextInternalRenderTargetID() {
Mike Kleinde2244c2018-12-04 11:16:08 -050033 // We start off with large numbers to differentiate from texture IDs, even though they're
Brian Salomon0c51eea2018-03-09 17:02:09 -050034 // technically in a different space.
Mike Kleinde2244c2018-12-04 11:16:08 -050035 static std::atomic<int> nextID{SK_MaxS32};
36 return nextID--;
Brian Salomon0c51eea2018-03-09 17:02:09 -050037}
38
39int GrMockGpu::NextExternalRenderTargetID() {
40 // We use large negative ints for the "testing only external render targets" so they can easily
41 // be identified when debugging.
Mike Kleinde2244c2018-12-04 11:16:08 -050042 static std::atomic<int> nextID{SK_MinS32};
43 return nextID++;
Brian Salomon0c51eea2018-03-09 17:02:09 -050044}
45
Brian Salomon384fab42017-12-07 12:33:05 -050046sk_sp<GrGpu> GrMockGpu::Make(const GrMockOptions* mockOptions,
47 const GrContextOptions& contextOptions, GrContext* context) {
Greg Daniel02611d92017-07-25 10:05:01 -040048 static const GrMockOptions kDefaultOptions = GrMockOptions();
49 if (!mockOptions) {
50 mockOptions = &kDefaultOptions;
51 }
Brian Salomon384fab42017-12-07 12:33:05 -050052 return sk_sp<GrGpu>(new GrMockGpu(context, *mockOptions, contextOptions));
Greg Daniel02611d92017-07-25 10:05:01 -040053}
54
Robert Phillips5b5d84c2018-08-09 15:12:18 -040055GrGpuRTCommandBuffer* GrMockGpu::getCommandBuffer(
Ethan Nicholas56d19a52018-10-15 11:26:20 -040056 GrRenderTarget* rt, GrSurfaceOrigin origin, const SkRect& bounds,
Robert Phillips5b5d84c2018-08-09 15:12:18 -040057 const GrGpuRTCommandBuffer::LoadAndStoreInfo&,
58 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo&) {
Greg Daniel500d58b2017-08-24 15:59:33 -040059 return new GrMockGpuRTCommandBuffer(this, rt, origin);
Brian Salomoncfe910d2017-07-06 16:40:18 -040060}
61
Robert Phillips5b5d84c2018-08-09 15:12:18 -040062GrGpuTextureCommandBuffer* GrMockGpu::getCommandBuffer(GrTexture* texture, GrSurfaceOrigin origin) {
Greg Daniel500d58b2017-08-24 15:59:33 -040063 return new GrMockGpuTextureCommandBuffer(texture, origin);
64}
65
Robert Phillips5b5d84c2018-08-09 15:12:18 -040066void GrMockGpu::submit(GrGpuCommandBuffer* buffer) {
67 if (buffer->asRTCommandBuffer()) {
68 this->submitCommandBuffer(
69 static_cast<GrMockGpuRTCommandBuffer*>(buffer->asRTCommandBuffer()));
70 }
71
72 delete buffer;
73}
Greg Daniel500d58b2017-08-24 15:59:33 -040074
75void GrMockGpu::submitCommandBuffer(const GrMockGpuRTCommandBuffer* cmdBuffer) {
Brian Salomoncfe910d2017-07-06 16:40:18 -040076 for (int i = 0; i < cmdBuffer->numDraws(); ++i) {
77 fStats.incNumDraws();
78 }
79}
80
81GrMockGpu::GrMockGpu(GrContext* context, const GrMockOptions& options,
82 const GrContextOptions& contextOptions)
Chris Dalton91ab1552018-04-18 13:24:25 -060083 : INHERITED(context)
84 , fMockOptions(options) {
Brian Salomoncfe910d2017-07-06 16:40:18 -040085 fCaps.reset(new GrMockCaps(contextOptions, options));
86}
87
88sk_sp<GrTexture> GrMockGpu::onCreateTexture(const GrSurfaceDesc& desc, SkBudgeted budgeted,
Brian Salomon58389b92018-03-07 13:01:25 -050089 const GrMipLevel texels[], int mipLevelCount) {
Chris Dalton91ab1552018-04-18 13:24:25 -060090 if (fMockOptions.fFailTextureAllocations) {
91 return nullptr;
92 }
93
Greg Daniele877dce2019-07-11 10:52:43 -040094 GrColorType ct = GrPixelConfigToColorType(desc.fConfig);
Robert Phillipsa5e78be2019-07-09 12:34:38 -040095 if (GrColorType::kUnknown == ct) {
96 return nullptr;
97 }
98
Greg Daniel0fc4d2d2017-10-12 11:23:36 -040099 GrMipMapsStatus mipMapsStatus = mipLevelCount > 1 ? GrMipMapsStatus::kValid
100 : GrMipMapsStatus::kNotAllocated;
Greg Daniele877dce2019-07-11 10:52:43 -0400101 GrMockTextureInfo texInfo(ct, NextInternalTextureID());
Brian Salomoncfe910d2017-07-06 16:40:18 -0400102 if (desc.fFlags & kRenderTarget_GrSurfaceFlag) {
Greg Daniele877dce2019-07-11 10:52:43 -0400103 GrMockRenderTargetInfo rtInfo(ct, NextInternalRenderTargetID());
Brian Salomon0c51eea2018-03-09 17:02:09 -0500104 return sk_sp<GrTexture>(new GrMockTextureRenderTarget(this, budgeted, desc, mipMapsStatus,
105 texInfo, rtInfo));
Brian Salomoncfe910d2017-07-06 16:40:18 -0400106 }
Brian Salomon0c51eea2018-03-09 17:02:09 -0500107 return sk_sp<GrTexture>(new GrMockTexture(this, budgeted, desc, mipMapsStatus, texInfo));
Brian Salomoncfe910d2017-07-06 16:40:18 -0400108}
109
Brian Salomonbb8dde82019-06-27 10:52:13 -0400110sk_sp<GrTexture> GrMockGpu::onCreateCompressedTexture(int width, int height,
111 SkImage::CompressionType compressionType,
112 SkBudgeted budgeted, const void* data) {
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400113 return nullptr;
Brian Salomonbb8dde82019-06-27 10:52:13 -0400114}
115
Greg Daniel4684f822018-03-08 15:27:36 -0500116sk_sp<GrTexture> GrMockGpu::onWrapBackendTexture(const GrBackendTexture& tex,
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500117 GrWrapOwnership ownership,
118 GrWrapCacheable wrapType, GrIOType ioType) {
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400119 GrMockTextureInfo info;
120 SkAssertResult(tex.getMockTextureInfo(&info));
121
Greg Daniel4684f822018-03-08 15:27:36 -0500122 GrSurfaceDesc desc;
123 desc.fWidth = tex.width();
124 desc.fHeight = tex.height();
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400125 desc.fConfig = info.pixelConfig();
Greg Daniel4684f822018-03-08 15:27:36 -0500126
127 GrMipMapsStatus mipMapsStatus = tex.hasMipMaps() ? GrMipMapsStatus::kValid
128 : GrMipMapsStatus::kNotAllocated;
129
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500130 return sk_sp<GrTexture>(new GrMockTexture(this, desc, mipMapsStatus, info, wrapType, ioType));
Greg Daniel4684f822018-03-08 15:27:36 -0500131}
132
Brian Salomon0c51eea2018-03-09 17:02:09 -0500133sk_sp<GrTexture> GrMockGpu::onWrapRenderableBackendTexture(const GrBackendTexture& tex,
134 int sampleCnt,
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500135 GrWrapOwnership ownership,
136 GrWrapCacheable cacheable) {
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400137 GrMockTextureInfo texInfo;
138 SkAssertResult(tex.getMockTextureInfo(&texInfo));
139
Brian Salomon0c51eea2018-03-09 17:02:09 -0500140 GrSurfaceDesc desc;
141 desc.fFlags = kRenderTarget_GrSurfaceFlag;
142 desc.fWidth = tex.width();
143 desc.fHeight = tex.height();
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400144 desc.fConfig = texInfo.pixelConfig();
Brian Salomon0c51eea2018-03-09 17:02:09 -0500145
146 GrMipMapsStatus mipMapsStatus =
147 tex.hasMipMaps() ? GrMipMapsStatus::kValid : GrMipMapsStatus::kNotAllocated;
148
Brian Salomon0c51eea2018-03-09 17:02:09 -0500149 // The client gave us the texture ID but we supply the render target ID.
Greg Daniele877dce2019-07-11 10:52:43 -0400150 GrMockRenderTargetInfo rtInfo(texInfo.fColorType, NextInternalRenderTargetID());
Brian Salomon0c51eea2018-03-09 17:02:09 -0500151
152 return sk_sp<GrTexture>(
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500153 new GrMockTextureRenderTarget(this, desc, mipMapsStatus, texInfo, rtInfo, cacheable));
Brian Salomon0c51eea2018-03-09 17:02:09 -0500154}
155
156sk_sp<GrRenderTarget> GrMockGpu::onWrapBackendRenderTarget(const GrBackendRenderTarget& rt) {
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400157 GrMockRenderTargetInfo info;
158 SkAssertResult(rt.getMockRenderTargetInfo(&info));
159
Brian Salomon0c51eea2018-03-09 17:02:09 -0500160 GrSurfaceDesc desc;
161 desc.fFlags = kRenderTarget_GrSurfaceFlag;
162 desc.fWidth = rt.width();
163 desc.fHeight = rt.height();
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400164 desc.fConfig = info.pixelConfig();
Brian Salomon0c51eea2018-03-09 17:02:09 -0500165
166 return sk_sp<GrRenderTarget>(
167 new GrMockRenderTarget(this, GrMockRenderTarget::kWrapped, desc, info));
168}
169
170sk_sp<GrRenderTarget> GrMockGpu::onWrapBackendTextureAsRenderTarget(const GrBackendTexture& tex,
171 int sampleCnt) {
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400172 GrMockTextureInfo texInfo;
173 SkAssertResult(tex.getMockTextureInfo(&texInfo));
174
Brian Salomon0c51eea2018-03-09 17:02:09 -0500175 GrSurfaceDesc desc;
176 desc.fFlags = kRenderTarget_GrSurfaceFlag;
177 desc.fWidth = tex.width();
178 desc.fHeight = tex.height();
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400179 desc.fConfig = texInfo.pixelConfig();
Brian Salomon0c51eea2018-03-09 17:02:09 -0500180 desc.fSampleCnt = sampleCnt;
181
Brian Salomon0c51eea2018-03-09 17:02:09 -0500182 // The client gave us the texture ID but we supply the render target ID.
Greg Daniele877dce2019-07-11 10:52:43 -0400183 GrMockRenderTargetInfo rtInfo(texInfo.fColorType, NextInternalRenderTargetID());
Brian Salomon0c51eea2018-03-09 17:02:09 -0500184
185 return sk_sp<GrRenderTarget>(
186 new GrMockRenderTarget(this, GrMockRenderTarget::kWrapped, desc, rtInfo));
187}
188
Brian Salomondbf70722019-02-07 11:31:24 -0500189sk_sp<GrGpuBuffer> GrMockGpu::onCreateBuffer(size_t sizeInBytes, GrGpuBufferType type,
190 GrAccessPattern accessPattern, const void*) {
191 return sk_sp<GrGpuBuffer>(new GrMockBuffer(this, sizeInBytes, type, accessPattern));
Brian Salomoncfe910d2017-07-06 16:40:18 -0400192}
193
Chris Daltoneffee202019-07-01 22:28:03 -0600194GrStencilAttachment* GrMockGpu::createStencilAttachmentForRenderTarget(
195 const GrRenderTarget* rt, int width, int height, int numStencilSamples) {
196 SkASSERT(numStencilSamples == rt->numSamples());
Brian Salomoncfe910d2017-07-06 16:40:18 -0400197 static constexpr int kBits = 8;
198 fStats.incStencilAttachmentCreates();
Chris Dalton6ce447a2019-06-23 18:07:38 -0600199 return new GrMockStencilAttachment(this, width, height, kBits, rt->numSamples());
Brian Salomoncfe910d2017-07-06 16:40:18 -0400200}
Brian Salomon8fe24272017-07-07 12:56:11 -0400201
Robert Phillipsf0313ee2019-05-21 13:51:11 -0400202GrBackendTexture GrMockGpu::createBackendTexture(int w, int h,
203 const GrBackendFormat& format,
204 GrMipMapped mipMapped,
205 GrRenderable /* renderable */,
206 const void* /* pixels */,
Robert Phillips459b2952019-05-23 09:38:27 -0400207 size_t /* rowBytes */,
Emircan Uysaler23ca4e72019-06-24 10:53:09 -0400208 const SkColor4f* /* color */,
209 GrProtected /* isProtected */) {
Robert Phillips646f6372018-09-25 09:31:10 -0400210
Greg Daniele877dce2019-07-11 10:52:43 -0400211 if (!format.getMockColorType()) {
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400212 return GrBackendTexture(); // invalid;
213 }
214
Greg Daniele877dce2019-07-11 10:52:43 -0400215 if (!this->caps()->isFormatTexturable(*format.getMockColorType(), format)) {
Robert Phillips9dbcdcc2019-05-13 10:40:06 -0400216 return GrBackendTexture(); // invalid
217 }
218
Greg Daniele877dce2019-07-11 10:52:43 -0400219 GrMockTextureInfo info(*format.getMockColorType(), NextExternalTextureID());
Robert Phillips646f6372018-09-25 09:31:10 -0400220
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500221 fOutstandingTestingOnlyTextureIDs.add(info.fID);
Brian Salomon0c51eea2018-03-09 17:02:09 -0500222 return GrBackendTexture(w, h, mipMapped, info);
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500223}
224
Robert Phillipsf0313ee2019-05-21 13:51:11 -0400225void GrMockGpu::deleteBackendTexture(const GrBackendTexture& tex) {
Robert Phillipsf0ced622019-05-16 09:06:25 -0400226 SkASSERT(GrBackendApi::kMock == tex.backend());
227
228 GrMockTextureInfo info;
229 if (tex.getMockTextureInfo(&info)) {
230 fOutstandingTestingOnlyTextureIDs.remove(info.fID);
231 }
232}
233
234#if GR_TEST_UTILS
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500235bool GrMockGpu::isTestingOnlyBackendTexture(const GrBackendTexture& tex) const {
Greg Danielbdf12ad2018-10-12 09:31:11 -0400236 SkASSERT(GrBackendApi::kMock == tex.backend());
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500237
Greg Daniel52e16d92018-04-10 09:34:07 -0400238 GrMockTextureInfo info;
239 if (!tex.getMockTextureInfo(&info)) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500240 return false;
241 }
242
Greg Daniel52e16d92018-04-10 09:34:07 -0400243 return fOutstandingTestingOnlyTextureIDs.contains(info.fID);
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500244}
245
Brian Salomon0c51eea2018-03-09 17:02:09 -0500246GrBackendRenderTarget GrMockGpu::createTestingOnlyBackendRenderTarget(int w, int h,
Brian Osman2d010b62018-08-09 10:55:09 -0400247 GrColorType colorType) {
Greg Daniele877dce2019-07-11 10:52:43 -0400248 GrMockRenderTargetInfo info(colorType, NextExternalRenderTargetID());
Brian Salomon0c51eea2018-03-09 17:02:09 -0500249 static constexpr int kSampleCnt = 1;
250 static constexpr int kStencilBits = 8;
Robert Phillipsa5e78be2019-07-09 12:34:38 -0400251 return GrBackendRenderTarget(w, h, kSampleCnt, kStencilBits, info);
Brian Salomonf865b052018-03-09 09:01:53 -0500252}
253
254void GrMockGpu::deleteTestingOnlyBackendRenderTarget(const GrBackendRenderTarget&) {}
255#endif