blob: 112ba437f07dc59add2608e9809acfe7b568a346 [file] [log] [blame]
bsalomon@google.comc26d94f2013-03-25 18:19:00 +00001
2/*
3 * Copyright 2013 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.
7 */
bsalomon4b91f762015-05-19 09:29:46 -07008#ifndef GrCaps_DEFINED
9#define GrCaps_DEFINED
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000010
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkImageInfo.h"
12#include "include/core/SkRefCnt.h"
13#include "include/core/SkString.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "include/gpu/GrDriverBugWorkarounds.h"
15#include "include/private/GrTypesPriv.h"
Brian Salomon096b0912019-08-14 16:56:13 -040016#include "src/gpu/GrBlend.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050017#include "src/gpu/GrShaderCaps.h"
Brian Salomon1e03b6b12019-07-17 17:28:24 -040018#include "src/gpu/GrSurfaceProxy.h"
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +000019
Robert Phillipsfc711a22018-02-13 17:03:00 -050020class GrBackendFormat;
Greg Danielfaa095e2017-12-19 13:15:02 -050021class GrBackendRenderTarget;
Greg Danielf5d87582017-12-18 14:48:15 -050022class GrBackendTexture;
bsalomon682c2692015-05-22 14:01:46 -070023struct GrContextOptions;
Robert Phillipsbf25d432017-04-07 10:08:53 -040024class GrRenderTargetProxy;
Brian Salomon3d86a192018-02-27 16:46:11 -050025class GrSurface;
Brian Osman71a18892017-08-10 10:23:25 -040026class SkJSONWriter;
jvanverthe9c0fc62015-04-29 11:18:05 -070027
28/**
bsalomon4b91f762015-05-19 09:29:46 -070029 * Represents the capabilities of a GrContext.
jvanverthe9c0fc62015-04-29 11:18:05 -070030 */
bsalomon4b91f762015-05-19 09:29:46 -070031class GrCaps : public SkRefCnt {
jvanverthe9c0fc62015-04-29 11:18:05 -070032public:
bsalomon682c2692015-05-22 14:01:46 -070033 GrCaps(const GrContextOptions&);
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000034
Brian Osman71a18892017-08-10 10:23:25 -040035 void dumpJSON(SkJSONWriter*) const;
36
Brian Salomon94efbf52016-11-29 13:43:05 -050037 const GrShaderCaps* shaderCaps() const { return fShaderCaps.get(); }
jvanverthe9c0fc62015-04-29 11:18:05 -070038
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000039 bool npotTextureTileSupport() const { return fNPOTTextureTileSupport; }
commit-bot@chromium.org47442312013-12-19 16:18:01 +000040 /** To avoid as-yet-unnecessary complexity we don't allow any partial support of MIP Maps (e.g.
41 only for POT textures) */
42 bool mipMapSupport() const { return fMipMapSupport; }
brianosman64d094d2016-03-25 06:01:59 -070043
44 /**
45 * Skia convention is that a device only has sRGB support if it supports sRGB formats for both
Brian Osman9363ac42018-06-01 16:10:53 -040046 * textures and framebuffers.
brianosman64d094d2016-03-25 06:01:59 -070047 */
brianosmana6359362016-03-21 06:55:37 -070048 bool srgbSupport() const { return fSRGBSupport; }
brianosman35b784d2016-05-05 11:52:53 -070049 /**
50 * Is there support for enabling/disabling sRGB writes for sRGB-capable color buffers?
51 */
52 bool srgbWriteControl() const { return fSRGBWriteControl; }
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +000053 bool gpuTracingSupport() const { return fGpuTracingSupport; }
bsalomond08ea5f2015-02-20 06:58:13 -080054 bool oversizedStencilSupport() const { return fOversizedStencilSupport; }
cdaltonfd4167d2015-04-21 11:45:56 -070055 bool textureBarrierSupport() const { return fTextureBarrierSupport; }
Robert Phillips7f861922018-01-30 13:13:42 +000056 bool sampleLocationsSupport() const { return fSampleLocationsSupport; }
csmartdalton2b5f2cb2016-06-10 14:06:32 -070057 bool multisampleDisableSupport() const { return fMultisampleDisableSupport; }
Chris Dalton1d616352017-05-31 12:51:23 -060058 bool instanceAttribSupport() const { return fInstanceAttribSupport; }
Chris Dalton6ce447a2019-06-23 18:07:38 -060059 bool mixedSamplesSupport() const { return fMixedSamplesSupport; }
Chris Daltond5d8a642019-08-08 15:29:20 -060060 // This flag indicates that we never have to resolve MSAA. In practice, it means that we have
61 // an MSAA-render-to-texture extension: Any render target we create internally will use the
62 // extension, and any wrapped render target is the client's responsibility.
63 bool msaaResolvesAutomatically() const { return fMSAAResolvesAutomatically; }
Brian Osman499bf1a2018-09-17 11:32:42 -040064 bool halfFloatVertexAttributeSupport() const { return fHalfFloatVertexAttributeSupport; }
Chris Dalton27059d32018-01-23 14:06:50 -070065
66 // Primitive restart functionality is core in ES 3.0, but using it will cause slowdowns on some
67 // systems. This cap is only set if primitive restart will improve performance.
68 bool usePrimitiveRestart() const { return fUsePrimitiveRestart; }
69
csmartdalton485a1202016-07-13 10:16:32 -070070 bool preferClientSideDynamicBuffers() const { return fPreferClientSideDynamicBuffers; }
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +000071
Chris Dalton344e9032017-12-11 15:42:09 -070072 // On tilers, an initial fullscreen clear is an OPTIMIZATION. It allows the hardware to
73 // initialize each tile with a constant value rather than loading each pixel from memory.
74 bool preferFullscreenClears() const { return fPreferFullscreenClears; }
75
robertphillips63926682015-08-20 09:39:02 -070076 bool preferVRAMUseOverFlushes() const { return fPreferVRAMUseOverFlushes; }
77
Chris Dalton0dffbab2019-03-27 13:08:50 -060078 bool preferTrianglesOverSampleMask() const { return fPreferTrianglesOverSampleMask; }
79
Eric Karl5c779752017-05-08 12:02:07 -070080 bool avoidStencilBuffers() const { return fAvoidStencilBuffers; }
81
Greg Daniel4374e962018-09-28 15:09:47 -040082 bool avoidWritePixelsFastPath() const { return fAvoidWritePixelsFastPath; }
83
csmartdaltone0d36292016-07-29 08:14:20 -070084 /**
cdalton8917d622015-05-06 13:40:21 -070085 * Indicates the capabilities of the fixed function blend unit.
86 */
87 enum BlendEquationSupport {
88 kBasic_BlendEquationSupport, //<! Support to select the operator that
89 // combines src and dst terms.
90 kAdvanced_BlendEquationSupport, //<! Additional fixed function support for specific
91 // SVG/PDF blend modes. Requires blend barriers.
92 kAdvancedCoherent_BlendEquationSupport, //<! Advanced blend equation support that does not
93 // require blend barriers, and permits overlap.
94
95 kLast_BlendEquationSupport = kAdvancedCoherent_BlendEquationSupport
96 };
97
98 BlendEquationSupport blendEquationSupport() const { return fBlendEquationSupport; }
99
100 bool advancedBlendEquationSupport() const {
101 return fBlendEquationSupport >= kAdvanced_BlendEquationSupport;
102 }
103
104 bool advancedCoherentBlendEquationSupport() const {
105 return kAdvancedCoherent_BlendEquationSupport == fBlendEquationSupport;
106 }
107
Chris Dalton302d5be2019-01-22 23:41:25 -0700108 bool isAdvancedBlendEquationBlacklisted(GrBlendEquation equation) const {
cdalton1dd05422015-06-12 09:01:18 -0700109 SkASSERT(GrBlendEquationIsAdvanced(equation));
Chris Dalton302d5be2019-01-22 23:41:25 -0700110 SkASSERT(this->advancedBlendEquationSupport());
cdalton1dd05422015-06-12 09:01:18 -0700111 return SkToBool(fAdvBlendEqBlacklist & (1 << equation));
112 }
113
cdalton8917d622015-05-06 13:40:21 -0700114 /**
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000115 * Indicates whether GPU->CPU memory mapping for GPU resources such as vertex buffers and
116 * textures allows partial mappings or full mappings.
117 */
118 enum MapFlags {
Brian Salomon105d7c22019-04-16 13:46:14 -0400119 kNone_MapFlags = 0x0, //<! Cannot map the resource.
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000120
Brian Salomon105d7c22019-04-16 13:46:14 -0400121 kCanMap_MapFlag = 0x1, //<! The resource can be mapped. Must be set for any of
122 // the other flags to have meaning.
123 kSubset_MapFlag = 0x2, //<! The resource can be partially mapped.
Greg Daniel2d41d0d2019-08-26 11:08:51 -0400124 kAsyncRead_MapFlag = 0x4, //<! Are maps for reading asynchronous WRT GrOpsRenderPass
Brian Salomon105d7c22019-04-16 13:46:14 -0400125 // submitted to GrGpu.
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000126 };
127
128 uint32_t mapBufferFlags() const { return fMapBufferFlags; }
129
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +0000130 // Scratch textures not being reused means that those scratch textures
skia.committer@gmail.com7ed98df2013-10-31 07:01:53 +0000131 // that we upload to (i.e., don't have a render target) will not be
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +0000132 // recycled in the texture cache. This is to prevent ghosting by drivers
133 // (in particular for deferred architectures).
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000134 bool reuseScratchTextures() const { return fReuseScratchTextures; }
robertphillips1b8e1b52015-06-24 06:54:10 -0700135 bool reuseScratchBuffers() const { return fReuseScratchBuffers; }
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000136
bsalomon7dbd45d2016-03-23 10:40:53 -0700137 /// maximum number of attribute values per vertex
138 int maxVertexAttributes() const { return fMaxVertexAttributes; }
139
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000140 int maxRenderTargetSize() const { return fMaxRenderTargetSize; }
Chris Dalton2612bae2018-02-22 13:41:37 -0700141
142 /** This is the largest render target size that can be used without incurring extra perfomance
143 cost. It is usually the max RT size, unless larger render targets are known to be slower. */
144 int maxPreferredRenderTargetSize() const { return fMaxPreferredRenderTargetSize; }
145
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000146 int maxTextureSize() const { return fMaxTextureSize; }
Chris Dalton2612bae2018-02-22 13:41:37 -0700147
bsalomon8c07b7a2015-11-02 11:36:52 -0800148 /** This is the maximum tile size to use by GPU devices for rendering sw-backed images/bitmaps.
149 It is usually the max texture size, unless we're overriding it for testing. */
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400150 int maxTileSize() const {
151 SkASSERT(fMaxTileSize <= fMaxTextureSize);
152 return fMaxTileSize;
153 }
bsalomonc59a1df2015-06-01 07:13:42 -0700154
csmartdalton9bc11872016-08-09 12:42:47 -0700155 int maxWindowRectangles() const { return fMaxWindowRectangles; }
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000156
Greg Daniel2a303902018-02-20 10:25:54 -0500157 // Returns whether mixed samples is supported for the given backend render target.
158 bool isWindowRectanglesSupportedForRT(const GrBackendRenderTarget& rt) const {
159 return this->maxWindowRectangles() > 0 && this->onIsWindowRectanglesSupportedForRT(rt);
160 }
161
Robert Phillipsf209e882019-06-25 15:59:50 -0400162 virtual bool isFormatSRGB(const GrBackendFormat&) const = 0;
Robert Phillips8ff8bcc2019-07-29 17:03:35 -0400163 virtual bool isFormatCompressed(const GrBackendFormat&) const = 0;
Robert Phillipsf209e882019-06-25 15:59:50 -0400164
Greg Daniel7bfc9132019-08-14 14:23:53 -0400165 // TODO: Once we use the supportWritePixels call for uploads, we can remove this function and
166 // instead only have the version that takes a GrBackendFormat.
167 virtual bool isFormatTexturableAndUploadable(GrColorType, const GrBackendFormat&) const = 0;
168 // Can a texture be made with the GrBackendFormat, and then be bound and sampled in a shader.
169 virtual bool isFormatTexturable(const GrBackendFormat&) const = 0;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500170
Greg Daniel6980c4e2019-07-30 16:18:18 -0400171 // Returns whether a texture of the given format can be copied to a texture of the same format.
172 virtual bool isFormatCopyable(const GrBackendFormat&) const = 0;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500173
Greg Danieleadfac92019-08-02 09:03:53 -0400174 // Returns the maximum supported sample count for a format. 0 means the format is not renderable
175 // 1 means the format is renderable but doesn't support MSAA. This call only refers to the
176 // format itself. A caller should also confirm if the format is renderable with a given
177 // GrColorType by calling isFormatRenderable.
178 virtual int maxRenderTargetSampleCount(const GrBackendFormat&) const = 0;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500179
Chris Dalton1e6c5b82019-06-17 14:16:49 -0600180 // Returns the number of samples to use when performing internal draws to the given config with
Chris Daltona1638a52019-06-24 11:54:24 -0600181 // MSAA or mixed samples. If 0, Ganesh should not attempt to use internal multisampling.
Greg Danieleadfac92019-08-02 09:03:53 -0400182 int internalMultisampleCount(const GrBackendFormat& format) const {
183 return SkTMin(fInternalMultisampleCount, this->maxRenderTargetSampleCount(format));
Chris Dalton1e6c5b82019-06-17 14:16:49 -0600184 }
185
Greg Daniel900583a2019-08-06 12:05:31 -0400186 virtual bool isFormatAsColorTypeRenderable(GrColorType ct, const GrBackendFormat& format,
187 int sampleCount = 1) const = 0;
188
189 virtual bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const = 0;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500190
191 // Find a sample count greater than or equal to the requested count which is supported for a
Greg Daniel6fa62e22019-08-07 15:52:37 -0400192 // render target of the given format or 0 if no such sample count is supported. If the requested
Brian Salomonbdecacf2018-02-02 20:32:49 -0500193 // sample count is 1 then 1 will be returned if non-MSAA rendering is supported, otherwise 0.
194 // For historical reasons requestedCount==0 is handled identically to requestedCount==1.
Greg Daniel6fa62e22019-08-07 15:52:37 -0400195 virtual int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const = 0;
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +0000196
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500197 /**
Brian Salomon3d86a192018-02-27 16:46:11 -0500198 * Backends may have restrictions on what types of surfaces support GrGpu::writePixels().
199 * If this returns false then the caller should implement a fallback where a temporary texture
200 * is created, pixels are written to it, and then that is copied or drawn into the the surface.
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500201 */
Brian Salomonc67c31c2018-12-06 10:00:03 -0500202 bool surfaceSupportsWritePixels(const GrSurface*) const;
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400203
Emircan Uysaler23ca4e72019-06-24 10:53:09 -0400204 /**
Brian Salomondc0710f2019-07-01 14:59:32 -0400205 * Indicates whether surface supports GrGpu::readPixels, must be copied, or cannot be read.
Emircan Uysaler23ca4e72019-06-24 10:53:09 -0400206 */
Brian Salomondc0710f2019-07-01 14:59:32 -0400207 enum class SurfaceReadPixelsSupport {
208 /** GrGpu::readPixels is supported by the surface. */
209 kSupported,
210 /**
211 * GrGpu::readPixels is not supported by this surface but this surface can be drawn
212 * or copied to a Ganesh-created GrTextureType::kTexture2D and then that surface will be
213 * readable.
214 */
215 kCopyToTexture2D,
216 /**
217 * Not supported
218 */
219 kUnsupported,
Emircan Uysaler23ca4e72019-06-24 10:53:09 -0400220 };
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400221 /**
Brian Salomondc0710f2019-07-01 14:59:32 -0400222 * Backends may have restrictions on what types of surfaces support GrGpu::readPixels(). We may
223 * either be able to read directly from the surface, read from a copy of the surface, or not
224 * read at all.
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400225 */
Brian Salomondc0710f2019-07-01 14:59:32 -0400226 virtual SurfaceReadPixelsSupport surfaceSupportsReadPixels(const GrSurface*) const = 0;
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500227
Brian Salomon42be09d2019-07-26 12:12:26 -0400228 struct SupportedWrite {
229 GrColorType fColorType;
230 // If the write is occurring using GrGpu::transferPixelsTo then this provides the
231 // minimum alignment of the offset into the transfer buffer.
232 size_t fOffsetAlignmentForTransferBuffer;
233 };
234
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500235 /**
236 * Given a dst pixel config and a src color type what color type must the caller coax the
237 * the data into in order to use GrGpu::writePixels().
238 */
Brian Salomon01915c02019-08-02 09:57:21 -0400239 virtual SupportedWrite supportedWritePixelsColorType(GrColorType surfaceColorType,
240 const GrBackendFormat& surfaceFormat,
Brian Salomon42be09d2019-07-26 12:12:26 -0400241 GrColorType srcColorType) const = 0;
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500242
Brian Salomonf30b1c12019-06-20 12:25:02 -0400243 struct SupportedRead {
Brian Salomonf30b1c12019-06-20 12:25:02 -0400244 GrColorType fColorType;
Brian Salomon42be09d2019-07-26 12:12:26 -0400245 // If the read is occurring using GrGpu::transferPixelsFrom then this provides the
246 // minimum alignment of the offset into the transfer buffer.
Greg Danielba88ab62019-07-26 09:14:01 -0400247 size_t fOffsetAlignmentForTransferBuffer;
Brian Salomonf30b1c12019-06-20 12:25:02 -0400248 };
249
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400250 /**
Greg Daniel00fb7242019-07-18 14:28:01 -0400251 * Given a src surface's color type and its backend format as well as a color type the caller
Brian Salomonf30b1c12019-06-20 12:25:02 -0400252 * would like read into, this provides a legal color type that the caller may pass to
253 * GrGpu::readPixels(). The returned color type may differ from the passed dstColorType, in
254 * which case the caller must convert the read pixel data (see GrConvertPixels). When converting
255 * to dstColorType the swizzle in the returned struct should be applied. The caller must check
256 * the returned color type for kUnknown.
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400257 */
Greg Danielba88ab62019-07-26 09:14:01 -0400258 SupportedRead supportedReadPixelsColorType(GrColorType srcColorType,
259 const GrBackendFormat& srcFormat,
260 GrColorType dstColorType) const;
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400261
Brian Salomon1047a492019-07-02 12:25:21 -0400262 /**
263 * Do GrGpu::writePixels() and GrGpu::transferPixelsTo() support a src buffer where the row
264 * bytes is not equal to bpp * w?
265 */
266 bool writePixelsRowBytesSupport() const { return fWritePixelsRowBytesSupport; }
267 /**
268 * Does GrGpu::readPixels() support a dst buffer where the row bytes is not equal to bpp * w?
269 */
270 bool readPixelsRowBytesSupport() const { return fReadPixelsRowBytesSupport; }
271
Brian Salomone05ba5a2019-04-08 11:59:07 -0400272 /** Are transfer buffers (to textures and from surfaces) supported? */
273 bool transferBufferSupport() const { return fTransferBufferSupport; }
274
robertphillipscaef3452015-11-11 13:18:11 -0800275 bool suppressPrints() const { return fSuppressPrints; }
276
cdalton397536c2016-03-25 12:15:03 -0700277 size_t bufferMapThreshold() const {
278 SkASSERT(fBufferMapThreshold >= 0);
279 return fBufferMapThreshold;
joshualitt7224c862015-05-29 06:46:47 -0700280 }
bsalomon682c2692015-05-22 14:01:46 -0700281
Mike Kleinfc6c37b2016-09-27 09:34:10 -0400282 /** True in environments that will issue errors if memory uploaded to buffers
bsalomon7dea7b72015-08-19 08:26:51 -0700283 is not initialized (even if not read by draw calls). */
284 bool mustClearUploadedBufferData() const { return fMustClearUploadedBufferData; }
285
Kevin Lubick61a5f0a2019-03-28 09:47:15 -0400286 /** For some environments, there is a performance or safety concern to not
287 initializing textures. For example, with WebGL and Firefox, there is a large
288 performance hit to not doing it.
289 */
290 bool shouldInitializeTextures() const { return fShouldInitializeTextures; }
291
Greg Danielb2acf0a2018-09-12 09:17:11 -0400292 /** Returns true if the given backend supports importing AHardwareBuffers via the
293 * GrAHardwarebufferImageGenerator. This will only ever be supported on Android devices with API
294 * level >= 26.
295 * */
296 bool supportsAHardwareBufferImages() const { return fSupportsAHardwareBufferImages; }
297
Jim Van Verthfbdc0802017-05-02 16:15:53 -0400298 bool wireframeMode() const { return fWireframeMode; }
299
Brian Salomon9ff5acb2019-05-08 09:04:47 -0400300 /** Supports using GrFence. */
jvanverth84741b32016-09-30 08:39:02 -0700301 bool fenceSyncSupport() const { return fFenceSyncSupport; }
Brian Salomon9ff5acb2019-05-08 09:04:47 -0400302
303 /** Supports using GrSemaphore. */
304 bool semaphoreSupport() const { return fSemaphoreSupport; }
305
Brian Osman2c2bc112017-02-28 10:02:49 -0500306 bool crossContextTextureSupport() const { return fCrossContextTextureSupport; }
Brian Salomon467921e2017-03-06 16:17:12 -0500307 /**
Greg Daniel25af6712018-04-25 10:44:38 -0400308 * Returns whether or not we will be able to do a copy given the passed in params
309 */
Brian Salomonc67c31c2018-12-06 10:00:03 -0500310 bool canCopySurface(const GrSurfaceProxy* dst, const GrSurfaceProxy* src,
311 const SkIRect& srcRect, const SkIPoint& dstPoint) const;
Greg Daniel25af6712018-04-25 10:44:38 -0400312
Brian Salomonf7232642018-09-19 08:58:08 -0400313 bool dynamicStateArrayGeometryProcessorTextureSupport() const {
314 return fDynamicStateArrayGeometryProcessorTextureSupport;
315 }
316
Michael Ludwigc39d0c82019-01-15 10:03:43 -0500317 // Not all backends support clearing with a scissor test (e.g. Metal), this will always
318 // return true if performColorClearsAsDraws() returns true.
Michael Ludwiga21d1962019-01-11 15:26:22 -0500319 bool performPartialClearsAsDraws() const {
Michael Ludwigc39d0c82019-01-15 10:03:43 -0500320 return fPerformColorClearsAsDraws || fPerformPartialClearsAsDraws;
Michael Ludwiga21d1962019-01-11 15:26:22 -0500321 }
322
323 // Many drivers have issues with color clears.
Chris Daltona8fbeba2019-03-30 00:31:23 -0600324 bool performColorClearsAsDraws() const { return fPerformColorClearsAsDraws; }
Michael Ludwiga21d1962019-01-11 15:26:22 -0500325
326 /// Adreno 4xx devices experience an issue when there are a large number of stencil clip bit
327 /// clears. The minimal repro steps are not precisely known but drawing a rect with a stencil
328 /// op instead of using glClear seems to resolve the issue.
Chris Daltona8fbeba2019-03-30 00:31:23 -0600329 bool performStencilClearsAsDraws() const { return fPerformStencilClearsAsDraws; }
330
331 // Can we use coverage counting shortcuts to render paths? Coverage counting can cause artifacts
332 // along shared edges if care isn't taken to ensure both contours wind in the same direction.
333 bool allowCoverageCounting() const { return fAllowCoverageCounting; }
334
335 // Should we disable the CCPR code due to a faulty driver?
336 bool driverBlacklistCCPR() const { return fDriverBlacklistCCPR; }
Chris Dalton7c012082019-07-22 00:45:52 -0400337 bool driverBlacklistMSAACCPR() const { return fDriverBlacklistMSAACCPR; }
Ethan Nicholas56d19a52018-10-15 11:26:20 -0400338
Greg Daniel25af6712018-04-25 10:44:38 -0400339 /**
Brian Salomon1e03b6b12019-07-17 17:28:24 -0400340 * This is used to try to ensure a successful copy a dst in order to perform shader-based
341 * blending.
342 *
343 * fRectsMustMatch will be set to true if the copy operation must ensure that the src and dest
344 * rects are identical.
345 *
346 * fMustCopyWholeSrc will be set to true if copy rect must equal src's bounds.
347 *
348 * Caller will detect cases when copy cannot succeed and try copy-as-draw as a fallback.
Brian Salomon467921e2017-03-06 16:17:12 -0500349 */
Brian Salomon1e03b6b12019-07-17 17:28:24 -0400350 struct DstCopyRestrictions {
351 GrSurfaceProxy::RectsMustMatch fRectsMustMatch = GrSurfaceProxy::RectsMustMatch::kNo;
352 bool fMustCopyWholeSrc = false;
353 };
Greg Daniel0258c902019-08-01 13:08:33 -0400354 virtual DstCopyRestrictions getDstCopyRestrictions(const GrRenderTargetProxy* src,
355 GrColorType ct) const {
Brian Salomon1e03b6b12019-07-17 17:28:24 -0400356 return {};
357 }
Brian Salomon467921e2017-03-06 16:17:12 -0500358
Greg Daniel6fa62e22019-08-07 15:52:37 -0400359 bool validateSurfaceParams(const SkISize&, const GrBackendFormat&, GrPixelConfig,
360 GrRenderable renderable, int renderTargetSampleCnt,
361 GrMipMapped) const;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500362
Greg Daniel627d0532019-07-08 16:48:14 -0400363 bool areColorTypeAndFormatCompatible(GrColorType grCT,
Robert Phillips1e2cb442019-07-02 15:51:28 -0400364 const GrBackendFormat& format) const {
Robert Phillips1e2cb442019-07-02 15:51:28 -0400365 if (GrColorType::kUnknown == grCT) {
366 return false;
367 }
368
Greg Daniel627d0532019-07-08 16:48:14 -0400369 return this->onAreColorTypeAndFormatCompatible(grCT, format);
Robert Phillips1e2cb442019-07-02 15:51:28 -0400370 }
Robert Phillipsc046ff02019-07-01 10:34:03 -0400371
Robert Phillipsfc711a22018-02-13 17:03:00 -0500372 // TODO: it seems like we could pass the full SkImageInfo and validate its colorSpace too
Brian Salomonf391d0f2018-12-14 09:18:50 -0500373 // Returns kUnknown if a valid config could not be determined.
Greg Daniel627d0532019-07-08 16:48:14 -0400374 GrPixelConfig getConfigFromBackendFormat(const GrBackendFormat& format,
375 GrColorType grCT) const {
376 if (GrColorType::kUnknown == grCT) {
377 return kUnknown_GrPixelConfig;
378 }
379
380 return this->onGetConfigFromBackendFormat(format, grCT);
381 }
Robert Phillipsfc711a22018-02-13 17:03:00 -0500382
Jim Van Verthb7f0b9c2018-10-22 14:12:03 -0400383 /**
Robert Phillips00c9f0d2019-08-02 17:17:35 -0400384 * Special method only for YUVA images. Returns a colortype that matches the backend format or
385 * kUnknown if a colortype could not be determined.
Jim Van Verth9bf81202018-10-30 15:53:36 -0400386 */
Robert Phillips00c9f0d2019-08-02 17:17:35 -0400387 virtual GrColorType getYUVAColorTypeFromBackendFormat(const GrBackendFormat&,
388 bool isAlphaChannel) const = 0;
Jim Van Verth9bf81202018-10-30 15:53:36 -0400389
Brian Salomonf391d0f2018-12-14 09:18:50 -0500390 /** These are used when creating a new texture internally. */
Robert Phillips0a15cc62019-07-30 12:49:10 -0400391 GrBackendFormat getDefaultBackendFormat(GrColorType, GrRenderable) const;
Greg Daniel4065d452018-11-16 15:43:41 -0500392
Brian Salomonbb8dde82019-06-27 10:52:13 -0400393 virtual GrBackendFormat getBackendFormatFromCompressionType(SkImage::CompressionType) const = 0;
394
Timothy Liang036fdfe2018-06-28 15:50:36 -0400395 /**
Michael Ludwigf23a1522018-12-10 11:36:13 -0500396 * The CLAMP_TO_BORDER wrap mode for texture coordinates was added to desktop GL in 1.3, and
397 * GLES 3.2, but is also available in extensions. Vulkan and Metal always have support.
398 */
399 bool clampToBorderSupport() const { return fClampToBorderSupport; }
400
Greg Danieleb4a8272019-05-16 16:52:55 -0400401 /**
402 * Returns the GrSwizzle to use when sampling from a texture with the passed in GrBackendFormat
403 * and GrColorType.
404 */
405 virtual GrSwizzle getTextureSwizzle(const GrBackendFormat&, GrColorType) const = 0;
406
407 /**
408 * Returns the GrSwizzle to use when outputting to a render target with the passed in
409 * GrBackendFormat and GrColorType.
410 */
411 virtual GrSwizzle getOutputSwizzle(const GrBackendFormat&, GrColorType) const = 0;
412
Adrienne Walker3ed33992018-05-15 11:44:34 -0700413 const GrDriverBugWorkarounds& workarounds() const { return fDriverBugWorkarounds; }
414
Brian Salomon947efe22019-07-16 15:36:11 -0400415 /**
416 * Given a possibly generic GrPixelConfig and a backend format return a specific
417 * GrPixelConfig.
418 */
419 GrPixelConfig makeConfigSpecific(GrPixelConfig config, const GrBackendFormat& format) const {
420 auto ct = GrPixelConfigToColorType(config);
421 auto result = this->getConfigFromBackendFormat(format, ct);
422 SkASSERT(config == result || AreConfigsCompatible(config, result));
423 return result;
424 }
425
Robert Phillips0902c982019-07-16 07:47:56 -0400426#ifdef SK_DEBUG
427 // This is just a debugging entry point until we're weaned off of GrPixelConfig. It
428 // should be used to verify that the pixel config from user-level code (the genericConfig)
429 // is compatible with a pixel config we've computed from scratch (the specificConfig).
430 static bool AreConfigsCompatible(GrPixelConfig genericConfig, GrPixelConfig specificConfig);
431#endif
432
Robert Phillipsffe27292019-08-01 10:08:07 -0400433#if GR_TEST_UTILS
434 struct TestFormatColorTypeCombination {
435 GrColorType fColorType;
436 GrBackendFormat fFormat;
437 };
438
439 virtual std::vector<TestFormatColorTypeCombination> getTestingCombinations() const = 0;
440#endif
441
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000442protected:
bsalomon4ee6bd82015-05-27 13:23:23 -0700443 /** Subclasses must call this at the end of their constructors in order to apply caps
444 overrides requested by the client. Note that overrides will only reduce the caps never
445 expand them. */
446 void applyOptionsOverrides(const GrContextOptions& options);
447
bungeman6bd52842016-10-27 09:30:08 -0700448 sk_sp<GrShaderCaps> fShaderCaps;
jvanverthe9c0fc62015-04-29 11:18:05 -0700449
joshualitt83bc2292015-06-18 14:18:02 -0700450 bool fNPOTTextureTileSupport : 1;
451 bool fMipMapSupport : 1;
brianosmana6359362016-03-21 06:55:37 -0700452 bool fSRGBSupport : 1;
brianosman35b784d2016-05-05 11:52:53 -0700453 bool fSRGBWriteControl : 1;
joshualitt83bc2292015-06-18 14:18:02 -0700454 bool fReuseScratchTextures : 1;
robertphillips1b8e1b52015-06-24 06:54:10 -0700455 bool fReuseScratchBuffers : 1;
joshualitt83bc2292015-06-18 14:18:02 -0700456 bool fGpuTracingSupport : 1;
joshualitt83bc2292015-06-18 14:18:02 -0700457 bool fOversizedStencilSupport : 1;
458 bool fTextureBarrierSupport : 1;
Robert Phillips7f861922018-01-30 13:13:42 +0000459 bool fSampleLocationsSupport : 1;
csmartdalton2b5f2cb2016-06-10 14:06:32 -0700460 bool fMultisampleDisableSupport : 1;
Chris Dalton1d616352017-05-31 12:51:23 -0600461 bool fInstanceAttribSupport : 1;
Chris Dalton6ce447a2019-06-23 18:07:38 -0600462 bool fMixedSamplesSupport : 1;
Chris Daltond5d8a642019-08-08 15:29:20 -0600463 bool fMSAAResolvesAutomatically : 1;
Chris Dalton27059d32018-01-23 14:06:50 -0700464 bool fUsePrimitiveRestart : 1;
csmartdalton485a1202016-07-13 10:16:32 -0700465 bool fPreferClientSideDynamicBuffers : 1;
Chris Dalton344e9032017-12-11 15:42:09 -0700466 bool fPreferFullscreenClears : 1;
bsalomon7dea7b72015-08-19 08:26:51 -0700467 bool fMustClearUploadedBufferData : 1;
Kevin Lubick61a5f0a2019-03-28 09:47:15 -0400468 bool fShouldInitializeTextures : 1;
Greg Danielb2acf0a2018-09-12 09:17:11 -0400469 bool fSupportsAHardwareBufferImages : 1;
Brian Osman499bf1a2018-09-17 11:32:42 -0400470 bool fHalfFloatVertexAttributeSupport : 1;
Michael Ludwigf23a1522018-12-10 11:36:13 -0500471 bool fClampToBorderSupport : 1;
Michael Ludwiga21d1962019-01-11 15:26:22 -0500472 bool fPerformPartialClearsAsDraws : 1;
473 bool fPerformColorClearsAsDraws : 1;
474 bool fPerformStencilClearsAsDraws : 1;
Chris Daltona8fbeba2019-03-30 00:31:23 -0600475 bool fAllowCoverageCounting : 1;
Brian Salomone05ba5a2019-04-08 11:59:07 -0400476 bool fTransferBufferSupport : 1;
Brian Salomon1047a492019-07-02 12:25:21 -0400477 bool fWritePixelsRowBytesSupport : 1;
478 bool fReadPixelsRowBytesSupport : 1;
robertphillips1b8e1b52015-06-24 06:54:10 -0700479
bsalomon63b21962014-11-05 07:05:34 -0800480 // Driver workaround
Chris Daltona8fbeba2019-03-30 00:31:23 -0600481 bool fDriverBlacklistCCPR : 1;
Chris Dalton7c012082019-07-22 00:45:52 -0400482 bool fDriverBlacklistMSAACCPR : 1;
Eric Karl5c779752017-05-08 12:02:07 -0700483 bool fAvoidStencilBuffers : 1;
Greg Daniel4374e962018-09-28 15:09:47 -0400484 bool fAvoidWritePixelsFastPath : 1;
bsalomon63b21962014-11-05 07:05:34 -0800485
Brian Salomon01b476a2018-01-23 11:06:41 -0500486 // ANGLE performance workaround
robertphillips63926682015-08-20 09:39:02 -0700487 bool fPreferVRAMUseOverFlushes : 1;
488
Chris Dalton0dffbab2019-03-27 13:08:50 -0600489 // On some platforms it's better to make more triangles than to use the sample mask (MSAA only).
490 bool fPreferTrianglesOverSampleMask : 1;
491
jvanverth84741b32016-09-30 08:39:02 -0700492 bool fFenceSyncSupport : 1;
Brian Salomon9ff5acb2019-05-08 09:04:47 -0400493 bool fSemaphoreSupport : 1;
ethannicholas28ef4452016-03-25 09:26:03 -0700494
Brian Salomonf7232642018-09-19 08:58:08 -0400495 // Requires fence sync support in GL.
Brian Osman2c2bc112017-02-28 10:02:49 -0500496 bool fCrossContextTextureSupport : 1;
497
Brian Salomonf7232642018-09-19 08:58:08 -0400498 // Not (yet) implemented in VK backend.
499 bool fDynamicStateArrayGeometryProcessorTextureSupport : 1;
500
cdalton8917d622015-05-06 13:40:21 -0700501 BlendEquationSupport fBlendEquationSupport;
cdalton1dd05422015-06-12 09:01:18 -0700502 uint32_t fAdvBlendEqBlacklist;
503 GR_STATIC_ASSERT(kLast_GrBlendEquation < 32);
504
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000505 uint32_t fMapBufferFlags;
cdalton397536c2016-03-25 12:15:03 -0700506 int fBufferMapThreshold;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000507
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000508 int fMaxRenderTargetSize;
Chris Dalton2612bae2018-02-22 13:41:37 -0700509 int fMaxPreferredRenderTargetSize;
bsalomon7dbd45d2016-03-23 10:40:53 -0700510 int fMaxVertexAttributes;
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000511 int fMaxTextureSize;
bsalomon8c07b7a2015-11-02 11:36:52 -0800512 int fMaxTileSize;
csmartdalton9bc11872016-08-09 12:42:47 -0700513 int fMaxWindowRectangles;
Chris Daltona1638a52019-06-24 11:54:24 -0600514 int fInternalMultisampleCount;
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000515
Adrienne Walker68314842018-05-14 14:02:53 -0700516 GrDriverBugWorkarounds fDriverBugWorkarounds;
517
egdanielbc127a32014-09-19 12:07:43 -0700518private:
Mike Kleinfc6c37b2016-09-27 09:34:10 -0400519 virtual void onApplyOptionsOverrides(const GrContextOptions&) {}
Brian Osman71a18892017-08-10 10:23:25 -0400520 virtual void onDumpJSON(SkJSONWriter*) const {}
Brian Salomonc67c31c2018-12-06 10:00:03 -0500521 virtual bool onSurfaceSupportsWritePixels(const GrSurface*) const = 0;
522 virtual bool onCanCopySurface(const GrSurfaceProxy* dst, const GrSurfaceProxy* src,
523 const SkIRect& srcRect, const SkIPoint& dstPoint) const = 0;
Robert Phillips0a15cc62019-07-30 12:49:10 -0400524 virtual GrBackendFormat onGetDefaultBackendFormat(GrColorType, GrRenderable) const = 0;
egdanielb7e7d572015-11-04 04:23:53 -0800525
Greg Daniel2a303902018-02-20 10:25:54 -0500526 // Backends should implement this if they have any extra requirements for use of window
527 // rectangles for a specific GrBackendRenderTarget outside of basic support.
528 virtual bool onIsWindowRectanglesSupportedForRT(const GrBackendRenderTarget&) const {
529 return true;
530 }
531
Greg Daniel627d0532019-07-08 16:48:14 -0400532 virtual GrPixelConfig onGetConfigFromBackendFormat(const GrBackendFormat& format,
533 GrColorType ct) const = 0;
534
535 virtual bool onAreColorTypeAndFormatCompatible(GrColorType, const GrBackendFormat&) const = 0;
536
Greg Danielba88ab62019-07-26 09:14:01 -0400537 virtual SupportedRead onSupportedReadPixelsColorType(GrColorType srcColorType,
538 const GrBackendFormat& srcFormat,
539 GrColorType dstColorType) const = 0;
540
Greg Daniel627d0532019-07-08 16:48:14 -0400541
robertphillipscaef3452015-11-11 13:18:11 -0800542 bool fSuppressPrints : 1;
Jim Van Verthfbdc0802017-05-02 16:15:53 -0400543 bool fWireframeMode : 1;
bsalomon682c2692015-05-22 14:01:46 -0700544
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000545 typedef SkRefCnt INHERITED;
546};
547
548#endif