blob: b842ac92ebdfbee6e4f32dfde48f920578bb4ac9 [file] [log] [blame]
jvanverthcba99b82015-06-24 06:59:57 -07001/*
2 * Copyright 2012 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
Brian Salomon94efbf52016-11-29 13:43:05 -05008#ifndef GrShaderCaps_DEFINED
9#define GrShaderCaps_DEFINED
jvanverthcba99b82015-06-24 06:59:57 -070010
Brian Salomon0560bd62018-06-19 14:19:13 -040011#include "GrSwizzle.h"
Brian Salomon23c55b62018-06-19 16:28:41 -040012#include "GrTypesPriv.h"
13#include "SkRefCnt.h"
14#include "glsl/GrGLSL.h"
jvanverthcba99b82015-06-24 06:59:57 -070015
Ethan Nicholas7ef4b742016-11-11 15:16:46 -050016namespace SkSL {
Brian Salomonc7fe0f72018-05-11 10:14:21 -040017class ShaderCapsFactory;
Ethan Nicholas7ef4b742016-11-11 15:16:46 -050018}
Brian Salomonc7fe0f72018-05-11 10:14:21 -040019
Brian Salomon94efbf52016-11-29 13:43:05 -050020struct GrContextOptions;
Brian Osman71a18892017-08-10 10:23:25 -040021class SkJSONWriter;
Ethan Nicholas7ef4b742016-11-11 15:16:46 -050022
Brian Salomon94efbf52016-11-29 13:43:05 -050023class GrShaderCaps : public SkRefCnt {
jvanverthcba99b82015-06-24 06:59:57 -070024public:
jvanverthcba99b82015-06-24 06:59:57 -070025 /**
Brian Salomonc7fe0f72018-05-11 10:14:21 -040026 * Indicates how GLSL must interact with advanced blend equations. The KHR extension requires
27 * special layout qualifiers in the fragment shader.
28 */
jvanverthcba99b82015-06-24 06:59:57 -070029 enum AdvBlendEqInteraction {
30 kNotSupported_AdvBlendEqInteraction, //<! No _blend_equation_advanced extension
31 kAutomatic_AdvBlendEqInteraction, //<! No interaction required
32 kGeneralEnable_AdvBlendEqInteraction, //<! layout(blend_support_all_equations) out
33 kSpecificEnables_AdvBlendEqInteraction, //<! Specific layout qualifiers per equation
34
35 kLast_AdvBlendEqInteraction = kSpecificEnables_AdvBlendEqInteraction
36 };
37
Brian Salomon94efbf52016-11-29 13:43:05 -050038 GrShaderCaps(const GrContextOptions&);
39
Brian Osman71a18892017-08-10 10:23:25 -040040 void dumpJSON(SkJSONWriter*) const;
Brian Salomon94efbf52016-11-29 13:43:05 -050041
Khushal3e7548c2018-05-23 15:45:01 -070042 bool supportsDistanceFieldText() const { return fShaderDerivativeSupport; }
43
Brian Salomon94efbf52016-11-29 13:43:05 -050044 bool shaderDerivativeSupport() const { return fShaderDerivativeSupport; }
45 bool geometryShaderSupport() const { return fGeometryShaderSupport; }
Chris Daltonf1b47bb2017-10-06 11:57:51 -060046 bool gsInvocationsSupport() const { return fGSInvocationsSupport; }
Brian Salomon94efbf52016-11-29 13:43:05 -050047 bool pathRenderingSupport() const { return fPathRenderingSupport; }
48 bool dstReadInShaderSupport() const { return fDstReadInShaderSupport; }
49 bool dualSourceBlendingSupport() const { return fDualSourceBlendingSupport; }
50 bool integerSupport() const { return fIntegerSupport; }
Brian Salomon94efbf52016-11-29 13:43:05 -050051 int imageLoadStoreSupport() const { return fImageLoadStoreSupport; }
52
jvanverthcba99b82015-06-24 06:59:57 -070053 /**
jvanverthcba99b82015-06-24 06:59:57 -070054 * Some helper functions for encapsulating various extensions to read FB Buffer on openglES
55 *
56 * TODO(joshualitt) On desktop opengl 4.2+ we can achieve something similar to this effect
57 */
58 bool fbFetchSupport() const { return fFBFetchSupport; }
59
60 bool fbFetchNeedsCustomOutput() const { return fFBFetchNeedsCustomOutput; }
61
egdaniel472d44e2015-10-22 08:20:00 -070062 const char* versionDeclString() const { return fVersionDeclString; }
63
jvanverthcba99b82015-06-24 06:59:57 -070064 const char* fbFetchColorName() const { return fFBFetchColorName; }
65
66 const char* fbFetchExtensionString() const { return fFBFetchExtensionString; }
67
68 bool dropsTileOnZeroDivide() const { return fDropsTileOnZeroDivide; }
69
cdaltonc08f1962016-02-12 12:14:06 -080070 bool flatInterpolationSupport() const { return fFlatInterpolationSupport; }
71
Brian Salomon41274562017-09-15 09:40:03 -070072 bool preferFlatInterpolation() const { return fPreferFlatInterpolation; }
73
cdaltonc08f1962016-02-12 12:14:06 -080074 bool noperspectiveInterpolationSupport() const { return fNoPerspectiveInterpolationSupport; }
75
Chris Daltond31b5e72019-02-26 18:02:16 -070076 bool sampleVariablesSupport() const { return fSampleVariablesSupport; }
77
cdalton9c3f1432016-03-11 10:07:37 -080078 bool externalTextureSupport() const { return fExternalTextureSupport; }
79
Chris Dalton1d616352017-05-31 12:51:23 -060080 bool vertexIDSupport() const { return fVertexIDSupport; }
81
Chris Dalton7c7ff032018-03-28 20:09:58 -060082 // frexp, ldexp, etc.
83 bool fpManipulationSupport() const { return fFPManipulationSupport; }
84
Chris Dalton47c8ed32017-11-15 18:27:09 -070085 bool floatIs32Bits() const { return fFloatIs32Bits; }
86
87 bool halfIs32Bits() const { return fHalfIs32Bits; }
88
Ruiqi Maob609e6d2018-07-17 10:19:38 -040089 bool unsignedSupport() const { return fUnsignedSupport; }
90
Chris Daltona7086182018-11-16 09:33:43 -050091 // SkSL only.
92 bool builtinFMASupport() const { return fBuiltinFMASupport; }
93
jvanverthcba99b82015-06-24 06:59:57 -070094 AdvBlendEqInteraction advBlendEqInteraction() const { return fAdvBlendEqInteraction; }
95
96 bool mustEnableAdvBlendEqs() const {
97 return fAdvBlendEqInteraction >= kGeneralEnable_AdvBlendEqInteraction;
98 }
99
100 bool mustEnableSpecificAdvBlendEqs() const {
101 return fAdvBlendEqInteraction == kSpecificEnables_AdvBlendEqInteraction;
102 }
halcanary9d524f22016-03-29 09:03:52 -0700103
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400104 bool mustDeclareFragmentShaderOutput() const { return fGLSLGeneration > k110_GrGLSLGeneration; }
jvanverthcba99b82015-06-24 06:59:57 -0700105
egdanielf5294392015-10-21 07:14:17 -0700106 bool usesPrecisionModifiers() const { return fUsesPrecisionModifiers; }
107
Greg Daniel80a08dd2017-01-20 10:45:49 -0500108 // Returns whether we can use the glsl function any() in our shader code.
egdaniel472d44e2015-10-22 08:20:00 -0700109 bool canUseAnyFunctionInShader() const { return fCanUseAnyFunctionInShader; }
110
egdaniel8dcdedc2015-11-11 06:27:20 -0800111 bool canUseMinAndAbsTogether() const { return fCanUseMinAndAbsTogether; }
112
Florin Malita8a0044f2017-08-07 14:38:22 -0400113 bool canUseFractForNegativeValues() const { return fCanUseFractForNegativeValues; }
114
egdaniel8dcdedc2015-11-11 06:27:20 -0800115 bool mustForceNegatedAtanParamToFloat() const { return fMustForceNegatedAtanParamToFloat; }
116
Greg Daniel80a08dd2017-01-20 10:45:49 -0500117 // Returns whether a device incorrectly implements atan(y,x) as atan(y/x)
118 bool atan2ImplementedAsAtanYOverX() const { return fAtan2ImplementedAsAtanYOverX; }
119
Greg Daniel10ed2432017-12-01 16:19:43 -0500120 // If this returns true some operation (could be a no op) must be called between floor and abs
121 // to make sure the driver compiler doesn't inline them together which can cause a driver bug in
122 // the shader.
123 bool mustDoOpBetweenFloorAndAbs() const { return fMustDoOpBetweenFloorAndAbs; }
124
Brian Osmancd3261a2018-01-16 13:52:29 +0000125 // If false, SkSL uses a workaround so that sk_FragCoord doesn't actually query gl_FragCoord
126 bool canUseFragCoord() const { return fCanUseFragCoord; }
127
Chris Daltonc2d0dd62018-03-07 07:46:10 -0700128 // If true, short ints can't represent every integer in the 16-bit two's complement range as
129 // required by the spec. SKSL will always emit full ints.
130 bool incompleteShortIntPrecision() const { return fIncompleteShortIntPrecision; }
131
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700132 // If true, then conditions in for loops need "&& true" to work around driver bugs.
Adrienne Walkeree8295c2018-08-21 10:56:30 -0700133 bool addAndTrueToLoopCondition() const { return fAddAndTrueToLoopCondition; }
134
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700135 // If true, then expressions such as "x && y" or "x || y" are rewritten as
136 // ternary to work around driver bugs.
137 bool unfoldShortCircuitAsTernary() const { return fUnfoldShortCircuitAsTernary; }
138
Adrienne Walker92b161f2018-08-22 10:41:52 -0700139 bool emulateAbsIntFunction() const { return fEmulateAbsIntFunction; }
140
Adrienne Walker8b23ca62018-08-22 10:45:41 -0700141 bool rewriteDoWhileLoops() const { return fRewriteDoWhileLoops; }
142
Adrienne Walker2f4c09b2018-08-22 16:04:57 -0700143 bool removePowWithConstantExponent() const { return fRemovePowWithConstantExponent; }
144
egdaniel138c2632016-08-17 10:59:00 -0700145 bool requiresLocalOutputColorForFBFetch() const { return fRequiresLocalOutputColorForFBFetch; }
146
Brian Osmanac1e4962017-05-25 11:34:38 -0400147 bool mustObfuscateUniformColor() const { return fMustObfuscateUniformColor; }
148
Brian Osmandff5d432017-08-01 14:46:18 -0400149 // The D3D shader compiler, when targeting PS 3.0 (ie within ANGLE) fails to compile certain
150 // constructs. See detailed comments in GrGLCaps.cpp.
151 bool mustGuardDivisionEvenAfterExplicitZeroCheck() const {
152 return fMustGuardDivisionEvenAfterExplicitZeroCheck;
153 }
154
egdaniel574a4c12015-11-02 06:22:44 -0800155 // Returns the string of an extension that must be enabled in the shader to support
156 // derivatives. If nullptr is returned then no extension needs to be enabled. Before calling
157 // this function, the caller should check that shaderDerivativeSupport exists.
158 const char* shaderDerivativeExtensionString() const {
159 SkASSERT(this->shaderDerivativeSupport());
160 return fShaderDerivativeExtensionString;
161 }
cdalton33ad7012016-02-22 07:55:44 -0800162
Chris Dalton8fd79552018-01-11 00:46:14 -0500163 // Returns the string of an extension that must be enabled in the shader to support geometry
164 // shaders. If nullptr is returned then no extension needs to be enabled. Before calling this
165 // function, the caller must verify that geometryShaderSupport exists.
166 const char* geometryShaderExtensionString() const {
167 SkASSERT(this->geometryShaderSupport());
168 return fGeometryShaderExtensionString;
169 }
170
Chris Daltonf1b47bb2017-10-06 11:57:51 -0600171 // Returns the string of an extension that must be enabled in the shader to support
172 // geometry shader invocations. If nullptr is returned then no extension needs to be enabled.
173 // Before calling this function, the caller must verify that gsInvocationsSupport exists.
174 const char* gsInvocationsExtensionString() const {
175 SkASSERT(this->gsInvocationsSupport());
176 return fGSInvocationsExtensionString;
177 }
178
egdaniel8dcdedc2015-11-11 06:27:20 -0800179 // Returns the string of an extension that will do all necessary coord transfomations needed
180 // when reading the fragment position. If such an extension does not exisits, this function
181 // returns a nullptr, and all transforms of the frag position must be done manually in the
182 // shader.
183 const char* fragCoordConventionsExtensionString() const {
184 return fFragCoordConventionsExtensionString;
185 }
186
187 // This returns the name of an extension that must be enabled in the shader, if such a thing is
188 // required in order to use a secondary output in the shader. This returns a nullptr if no such
189 // extension is required. However, the return value of this function does not say whether dual
190 // source blending is supported.
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400191 const char* secondaryOutputExtensionString() const { return fSecondaryOutputExtensionString; }
egdaniel574a4c12015-11-02 06:22:44 -0800192
Brian Osman061020e2018-04-17 14:22:15 -0400193 // This returns the name of an extension that must be enabled in the shader to support external
194 // textures. In some cases, two extensions must be enabled - the second extension is returned
195 // by secondExternalTextureExtensionString(). If that function returns nullptr, then only one
196 // extension is required.
bsalomon7ea33f52015-11-22 14:51:00 -0800197 const char* externalTextureExtensionString() const {
cdalton9c3f1432016-03-11 10:07:37 -0800198 SkASSERT(this->externalTextureSupport());
bsalomon7ea33f52015-11-22 14:51:00 -0800199 return fExternalTextureExtensionString;
200 }
201
Brian Osman061020e2018-04-17 14:22:15 -0400202 const char* secondExternalTextureExtensionString() const {
203 SkASSERT(this->externalTextureSupport());
204 return fSecondExternalTextureExtensionString;
205 }
206
cdaltonc08f1962016-02-12 12:14:06 -0800207 const char* noperspectiveInterpolationExtensionString() const {
208 SkASSERT(this->noperspectiveInterpolationSupport());
209 return fNoPerspectiveInterpolationExtensionString;
210 }
211
Chris Daltond31b5e72019-02-26 18:02:16 -0700212 const char* sampleVariablesExtensionString() const {
213 SkASSERT(this->sampleVariablesSupport());
214 return fSampleVariablesExtensionString;
215 }
216
Brian Salomonf26f7a02016-11-15 14:05:01 -0500217 const char* imageLoadStoreExtensionString() const {
218 SkASSERT(this->imageLoadStoreSupport());
219 return fImageLoadStoreExtensionString;
220 }
221
cdalton9c3f1432016-03-11 10:07:37 -0800222 int maxFragmentSamplers() const { return fMaxFragmentSamplers; }
223
Brian Salomon762d5e72017-12-01 10:25:08 -0500224 /**
bsalomoncdee0092016-01-08 13:20:12 -0800225 * Given a texture's config, this determines what swizzle must be appended to accesses to the
226 * texture in generated shader code. Swizzling may be implemented in texture parameters or a
bsalomon7f9b2e42016-01-12 13:29:26 -0800227 * sampler rather than in the shader. In this case the returned swizzle will always be "rgba".
egdanielb7e7d572015-11-04 04:23:53 -0800228 */
bsalomoncdee0092016-01-08 13:20:12 -0800229 const GrSwizzle& configTextureSwizzle(GrPixelConfig config) const {
230 return fConfigTextureSwizzle[config];
231 }
egdanielb7e7d572015-11-04 04:23:53 -0800232
bsalomon7f9b2e42016-01-12 13:29:26 -0800233 /** Swizzle that should occur on the fragment shader outputs for a given config. */
234 const GrSwizzle& configOutputSwizzle(GrPixelConfig config) const {
235 return fConfigOutputSwizzle[config];
236 }
237
jvanverthcba99b82015-06-24 06:59:57 -0700238 GrGLSLGeneration generation() const { return fGLSLGeneration; }
239
jvanverthcba99b82015-06-24 06:59:57 -0700240private:
Brian Salomon94efbf52016-11-29 13:43:05 -0500241 void applyOptionsOverrides(const GrContextOptions& options);
egdanielb7e7d572015-11-04 04:23:53 -0800242
jvanverthcba99b82015-06-24 06:59:57 -0700243 GrGLSLGeneration fGLSLGeneration;
halcanary9d524f22016-03-29 09:03:52 -0700244
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400245 bool fShaderDerivativeSupport : 1;
246 bool fGeometryShaderSupport : 1;
247 bool fGSInvocationsSupport : 1;
248 bool fPathRenderingSupport : 1;
249 bool fDstReadInShaderSupport : 1;
250 bool fDualSourceBlendingSupport : 1;
251 bool fIntegerSupport : 1;
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400252 bool fImageLoadStoreSupport : 1;
253 bool fDropsTileOnZeroDivide : 1;
254 bool fFBFetchSupport : 1;
255 bool fFBFetchNeedsCustomOutput : 1;
256 bool fUsesPrecisionModifiers : 1;
257 bool fFlatInterpolationSupport : 1;
258 bool fPreferFlatInterpolation : 1;
cdaltonc08f1962016-02-12 12:14:06 -0800259 bool fNoPerspectiveInterpolationSupport : 1;
Chris Daltond31b5e72019-02-26 18:02:16 -0700260 bool fSampleVariablesSupport : 1;
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400261 bool fExternalTextureSupport : 1;
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400262 bool fVertexIDSupport : 1;
263 bool fFPManipulationSupport : 1;
264 bool fFloatIs32Bits : 1;
265 bool fHalfIs32Bits : 1;
Ruiqi Maob609e6d2018-07-17 10:19:38 -0400266 bool fUnsignedSupport : 1;
egdanielf5294392015-10-21 07:14:17 -0700267
Chris Daltona7086182018-11-16 09:33:43 -0500268 // Used by SkSL to know when to generate polyfills.
269 bool fBuiltinFMASupport : 1;
270
egdaniel8dcdedc2015-11-11 06:27:20 -0800271 // Used for specific driver bug work arounds
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400272 bool fCanUseAnyFunctionInShader : 1;
273 bool fCanUseMinAndAbsTogether : 1;
274 bool fCanUseFractForNegativeValues : 1;
275 bool fMustForceNegatedAtanParamToFloat : 1;
276 bool fAtan2ImplementedAsAtanYOverX : 1;
277 bool fMustDoOpBetweenFloorAndAbs : 1;
278 bool fRequiresLocalOutputColorForFBFetch : 1;
279 bool fMustObfuscateUniformColor : 1;
Brian Osmandff5d432017-08-01 14:46:18 -0400280 bool fMustGuardDivisionEvenAfterExplicitZeroCheck : 1;
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400281 bool fCanUseFragCoord : 1;
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400282 bool fIncompleteShortIntPrecision : 1;
Adrienne Walkeree8295c2018-08-21 10:56:30 -0700283 bool fAddAndTrueToLoopCondition : 1;
Adrienne Walkerc02165f2018-08-21 11:08:11 -0700284 bool fUnfoldShortCircuitAsTernary : 1;
Adrienne Walker92b161f2018-08-22 10:41:52 -0700285 bool fEmulateAbsIntFunction : 1;
Adrienne Walker8b23ca62018-08-22 10:45:41 -0700286 bool fRewriteDoWhileLoops : 1;
Adrienne Walker2f4c09b2018-08-22 16:04:57 -0700287 bool fRemovePowWithConstantExponent : 1;
egdaniel8dcdedc2015-11-11 06:27:20 -0800288
egdaniel472d44e2015-10-22 08:20:00 -0700289 const char* fVersionDeclString;
jvanverthcba99b82015-06-24 06:59:57 -0700290
egdaniel574a4c12015-11-02 06:22:44 -0800291 const char* fShaderDerivativeExtensionString;
Chris Dalton8fd79552018-01-11 00:46:14 -0500292 const char* fGeometryShaderExtensionString;
Chris Daltonf1b47bb2017-10-06 11:57:51 -0600293 const char* fGSInvocationsExtensionString;
egdaniel8dcdedc2015-11-11 06:27:20 -0800294 const char* fFragCoordConventionsExtensionString;
295 const char* fSecondaryOutputExtensionString;
bsalomon7ea33f52015-11-22 14:51:00 -0800296 const char* fExternalTextureExtensionString;
Brian Osman061020e2018-04-17 14:22:15 -0400297 const char* fSecondExternalTextureExtensionString;
cdaltonc08f1962016-02-12 12:14:06 -0800298 const char* fNoPerspectiveInterpolationExtensionString;
Chris Daltond31b5e72019-02-26 18:02:16 -0700299 const char* fSampleVariablesExtensionString;
Brian Salomonf26f7a02016-11-15 14:05:01 -0500300 const char* fImageLoadStoreExtensionString;
egdaniel574a4c12015-11-02 06:22:44 -0800301
jvanverthcba99b82015-06-24 06:59:57 -0700302 const char* fFBFetchColorName;
303 const char* fFBFetchExtensionString;
304
jvanverthe78d4872016-09-27 03:33:05 -0700305 int fMaxFragmentSamplers;
cdalton9c3f1432016-03-11 10:07:37 -0800306
jvanverthcba99b82015-06-24 06:59:57 -0700307 AdvBlendEqInteraction fAdvBlendEqInteraction;
308
bsalomoncdee0092016-01-08 13:20:12 -0800309 GrSwizzle fConfigTextureSwizzle[kGrPixelConfigCnt];
bsalomon7f9b2e42016-01-12 13:29:26 -0800310 GrSwizzle fConfigOutputSwizzle[kGrPixelConfigCnt];
egdanielb7e7d572015-11-04 04:23:53 -0800311
Chris Dalton040238b2017-12-18 14:22:34 -0700312 friend class GrCaps; // For initialization.
313 friend class GrGLCaps;
Chris Daltonfddb6c02017-11-04 15:22:22 -0600314 friend class GrMockCaps;
Greg Danielcebcb842017-07-31 10:45:52 -0400315 friend class GrMtlCaps;
egdanielfa896322016-01-13 12:19:30 -0800316 friend class GrVkCaps;
Brian Salomonf1dd6772016-11-29 15:27:52 -0500317 friend class SkSL::ShaderCapsFactory;
jvanverthcba99b82015-06-24 06:59:57 -0700318};
319
jvanverthcba99b82015-06-24 06:59:57 -0700320#endif