bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 1 | |
| 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 | */ |
bsalomon | 4b91f76 | 2015-05-19 09:29:46 -0700 | [diff] [blame] | 8 | #ifndef GrCaps_DEFINED |
| 9 | #define GrCaps_DEFINED |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 10 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 11 | #include "GrTypes.h" |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 12 | #include "GrTypesPriv.h" |
| 13 | #include "GrShaderVar.h" |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 14 | #include "SkRefCnt.h" |
| 15 | #include "SkString.h" |
| 16 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 17 | struct GrContextOptions; |
| 18 | |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 19 | class GrShaderCaps : public SkRefCnt { |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 20 | public: |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 21 | SK_DECLARE_INST_COUNT(GrShaderCaps) |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 22 | |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 23 | /** Info about shader variable precision within a given shader stage. That is, this info |
bsalomon | c0bd648 | 2014-12-09 10:04:14 -0800 | [diff] [blame] | 24 | is relevant to a float (or vecNf) variable declared with a GrSLPrecision |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 25 | in a given GrShaderType. The info here is hoisted from the OpenGL spec. */ |
| 26 | struct PrecisionInfo { |
| 27 | PrecisionInfo() { |
| 28 | fLogRangeLow = 0; |
| 29 | fLogRangeHigh = 0; |
| 30 | fBits = 0; |
| 31 | } |
| 32 | |
| 33 | /** Is this precision level allowed in the shader stage? */ |
| 34 | bool supported() const { return 0 != fBits; } |
| 35 | |
| 36 | bool operator==(const PrecisionInfo& that) const { |
| 37 | return fLogRangeLow == that.fLogRangeLow && fLogRangeHigh == that.fLogRangeHigh && |
| 38 | fBits == that.fBits; |
| 39 | } |
| 40 | bool operator!=(const PrecisionInfo& that) const { return !(*this == that); } |
| 41 | |
| 42 | /** floor(log2(|min_value|)) */ |
| 43 | int fLogRangeLow; |
| 44 | /** floor(log2(|max_value|)) */ |
| 45 | int fLogRangeHigh; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 46 | /** Number of bits of precision. As defined in OpenGL (with names modified to reflect this |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 47 | struct) : |
| 48 | """ |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 49 | If the smallest representable value greater than 1 is 1 + e, then fBits will |
| 50 | contain floor(log2(e)), and every value in the range [2^fLogRangeLow, |
| 51 | 2^fLogRangeHigh] can be represented to at least one part in 2^fBits. |
| 52 | """ |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 53 | */ |
| 54 | int fBits; |
| 55 | }; |
| 56 | |
bsalomon | 424cc26 | 2015-05-22 10:37:30 -0700 | [diff] [blame] | 57 | GrShaderCaps(); |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 58 | |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 59 | virtual SkString dump() const; |
| 60 | |
| 61 | bool shaderDerivativeSupport() const { return fShaderDerivativeSupport; } |
| 62 | bool geometryShaderSupport() const { return fGeometryShaderSupport; } |
| 63 | bool pathRenderingSupport() const { return fPathRenderingSupport; } |
| 64 | bool dstReadInShaderSupport() const { return fDstReadInShaderSupport; } |
| 65 | bool dualSourceBlendingSupport() const { return fDualSourceBlendingSupport; } |
cdalton | 0edea2c | 2015-05-21 08:27:44 -0700 | [diff] [blame] | 66 | bool mixedSamplesSupport() const { return fMixedSamplesSupport; } |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 67 | |
| 68 | /** |
| 69 | * Get the precision info for a variable of type kFloat_GrSLType, kVec2f_GrSLType, etc in a |
| 70 | * given shader type. If the shader type is not supported or the precision level is not |
| 71 | * supported in that shader type then the returned struct will report false when supported() is |
| 72 | * called. |
| 73 | */ |
| 74 | const PrecisionInfo& getFloatShaderPrecisionInfo(GrShaderType shaderType, |
| 75 | GrSLPrecision precision) const { |
| 76 | return fFloatPrecisions[shaderType][precision]; |
| 77 | }; |
| 78 | |
| 79 | /** |
| 80 | * Is there any difference between the float shader variable precision types? If this is true |
| 81 | * then unless the shader type is not supported, any call to getFloatShaderPrecisionInfo() would |
| 82 | * report the same info for all precisions in all shader types. |
| 83 | */ |
| 84 | bool floatPrecisionVaries() const { return fShaderPrecisionVaries; } |
| 85 | |
| 86 | protected: |
bsalomon | 4ee6bd8 | 2015-05-27 13:23:23 -0700 | [diff] [blame] | 87 | /** Subclasses must call this at the end of their constructors in order to apply caps |
| 88 | overrides requested by the client. Note that overrides will only reduce the caps never |
| 89 | expand them. */ |
| 90 | void applyOptionsOverrides(const GrContextOptions& options); |
| 91 | |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 92 | bool fShaderDerivativeSupport : 1; |
| 93 | bool fGeometryShaderSupport : 1; |
| 94 | bool fPathRenderingSupport : 1; |
| 95 | bool fDstReadInShaderSupport : 1; |
| 96 | bool fDualSourceBlendingSupport : 1; |
cdalton | 0edea2c | 2015-05-21 08:27:44 -0700 | [diff] [blame] | 97 | bool fMixedSamplesSupport : 1; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 98 | |
| 99 | bool fShaderPrecisionVaries; |
| 100 | PrecisionInfo fFloatPrecisions[kGrShaderTypeCount][kGrSLPrecisionCount]; |
| 101 | |
| 102 | private: |
| 103 | typedef SkRefCnt INHERITED; |
| 104 | }; |
| 105 | |
| 106 | /** |
bsalomon | 4b91f76 | 2015-05-19 09:29:46 -0700 | [diff] [blame] | 107 | * Represents the capabilities of a GrContext. |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 108 | */ |
bsalomon | 4b91f76 | 2015-05-19 09:29:46 -0700 | [diff] [blame] | 109 | class GrCaps : public SkRefCnt { |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 110 | public: |
bsalomon | 4b91f76 | 2015-05-19 09:29:46 -0700 | [diff] [blame] | 111 | SK_DECLARE_INST_COUNT(GrCaps) |
bsalomon | 17168df | 2014-12-09 09:00:49 -0800 | [diff] [blame] | 112 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 113 | GrCaps(const GrContextOptions&); |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 114 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 115 | virtual SkString dump() const; |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 116 | |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 117 | GrShaderCaps* shaderCaps() const { return fShaderCaps; } |
| 118 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 119 | bool npotTextureTileSupport() const { return fNPOTTextureTileSupport; } |
commit-bot@chromium.org | 4744231 | 2013-12-19 16:18:01 +0000 | [diff] [blame] | 120 | /** To avoid as-yet-unnecessary complexity we don't allow any partial support of MIP Maps (e.g. |
| 121 | only for POT textures) */ |
| 122 | bool mipMapSupport() const { return fMipMapSupport; } |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 123 | bool twoSidedStencilSupport() const { return fTwoSidedStencilSupport; } |
| 124 | bool stencilWrapOpsSupport() const { return fStencilWrapOpsSupport; } |
commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 125 | bool discardRenderTargetSupport() const { return fDiscardRenderTargetSupport; } |
egdaniel | bdad9c3 | 2015-03-05 12:19:17 -0800 | [diff] [blame] | 126 | #if GR_FORCE_GPU_TRACE_DEBUGGING |
| 127 | bool gpuTracingSupport() const { return true; } |
| 128 | #else |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 129 | bool gpuTracingSupport() const { return fGpuTracingSupport; } |
egdaniel | bdad9c3 | 2015-03-05 12:19:17 -0800 | [diff] [blame] | 130 | #endif |
krajcevski | 78697816 | 2014-07-30 11:25:44 -0700 | [diff] [blame] | 131 | bool compressedTexSubImageSupport() const { return fCompressedTexSubImageSupport; } |
bsalomon | d08ea5f | 2015-02-20 06:58:13 -0800 | [diff] [blame] | 132 | bool oversizedStencilSupport() const { return fOversizedStencilSupport; } |
cdalton | fd4167d | 2015-04-21 11:45:56 -0700 | [diff] [blame] | 133 | bool textureBarrierSupport() const { return fTextureBarrierSupport; } |
robertphillips@google.com | 2d2e5c4 | 2013-10-30 21:30:43 +0000 | [diff] [blame] | 134 | |
bsalomon | 63b2196 | 2014-11-05 07:05:34 -0800 | [diff] [blame] | 135 | bool useDrawInsteadOfClear() const { return fUseDrawInsteadOfClear; } |
| 136 | |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 137 | /** |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 138 | * Indicates the capabilities of the fixed function blend unit. |
| 139 | */ |
| 140 | enum BlendEquationSupport { |
| 141 | kBasic_BlendEquationSupport, //<! Support to select the operator that |
| 142 | // combines src and dst terms. |
| 143 | kAdvanced_BlendEquationSupport, //<! Additional fixed function support for specific |
| 144 | // SVG/PDF blend modes. Requires blend barriers. |
| 145 | kAdvancedCoherent_BlendEquationSupport, //<! Advanced blend equation support that does not |
| 146 | // require blend barriers, and permits overlap. |
| 147 | |
| 148 | kLast_BlendEquationSupport = kAdvancedCoherent_BlendEquationSupport |
| 149 | }; |
| 150 | |
| 151 | BlendEquationSupport blendEquationSupport() const { return fBlendEquationSupport; } |
| 152 | |
| 153 | bool advancedBlendEquationSupport() const { |
| 154 | return fBlendEquationSupport >= kAdvanced_BlendEquationSupport; |
| 155 | } |
| 156 | |
| 157 | bool advancedCoherentBlendEquationSupport() const { |
| 158 | return kAdvancedCoherent_BlendEquationSupport == fBlendEquationSupport; |
| 159 | } |
| 160 | |
| 161 | /** |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 162 | * Indicates whether GPU->CPU memory mapping for GPU resources such as vertex buffers and |
| 163 | * textures allows partial mappings or full mappings. |
| 164 | */ |
| 165 | enum MapFlags { |
| 166 | kNone_MapFlags = 0x0, //<! Cannot map the resource. |
| 167 | |
| 168 | kCanMap_MapFlag = 0x1, //<! The resource can be mapped. Must be set for any of |
| 169 | // the other flags to have meaning.k |
| 170 | kSubset_MapFlag = 0x2, //<! The resource can be partially mapped. |
| 171 | }; |
| 172 | |
| 173 | uint32_t mapBufferFlags() const { return fMapBufferFlags; } |
| 174 | |
robertphillips@google.com | 2d2e5c4 | 2013-10-30 21:30:43 +0000 | [diff] [blame] | 175 | // Scratch textures not being reused means that those scratch textures |
skia.committer@gmail.com | 7ed98df | 2013-10-31 07:01:53 +0000 | [diff] [blame] | 176 | // that we upload to (i.e., don't have a render target) will not be |
robertphillips@google.com | 2d2e5c4 | 2013-10-30 21:30:43 +0000 | [diff] [blame] | 177 | // recycled in the texture cache. This is to prevent ghosting by drivers |
| 178 | // (in particular for deferred architectures). |
commit-bot@chromium.org | b835652 | 2013-07-18 22:26:39 +0000 | [diff] [blame] | 179 | bool reuseScratchTextures() const { return fReuseScratchTextures; } |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 180 | |
| 181 | int maxRenderTargetSize() const { return fMaxRenderTargetSize; } |
| 182 | int maxTextureSize() const { return fMaxTextureSize; } |
bsalomon | c59a1df | 2015-06-01 07:13:42 -0700 | [diff] [blame] | 183 | /** 0 unless GPU has problems with small textures */ |
| 184 | int minTextureSize() const { return fMinTextureSize; } |
| 185 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 186 | // Will be 0 if MSAA is not supported |
| 187 | int maxSampleCount() const { return fMaxSampleCount; } |
| 188 | |
commit-bot@chromium.org | 6b7938f | 2013-10-15 14:18:16 +0000 | [diff] [blame] | 189 | bool isConfigRenderable(GrPixelConfig config, bool withMSAA) const { |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 190 | SkASSERT(kGrPixelConfigCnt > config); |
commit-bot@chromium.org | 6b7938f | 2013-10-15 14:18:16 +0000 | [diff] [blame] | 191 | return fConfigRenderSupport[config][withMSAA]; |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 192 | } |
| 193 | |
commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 194 | bool isConfigTexturable(GrPixelConfig config) const { |
| 195 | SkASSERT(kGrPixelConfigCnt > config); |
| 196 | return fConfigTextureSupport[config]; |
commit-bot@chromium.org | 42dc813 | 2014-05-27 19:26:59 +0000 | [diff] [blame] | 197 | } |
| 198 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 199 | bool suppressPrints() const { return fSupressPrints; } |
| 200 | |
| 201 | bool drawPathMasksToCompressedTexturesSupport() const { |
joshualitt | 7224c86 | 2015-05-29 06:46:47 -0700 | [diff] [blame] | 202 | return fDrawPathMasksToCompressedTextureSupport; |
| 203 | } |
| 204 | |
| 205 | size_t geometryBufferMapThreshold() const { |
joshualitt | e5b74c6 | 2015-06-01 14:17:47 -0700 | [diff] [blame] | 206 | SkASSERT(fGeometryBufferMapThreshold >= 0); |
joshualitt | 7224c86 | 2015-05-29 06:46:47 -0700 | [diff] [blame] | 207 | return fGeometryBufferMapThreshold; |
| 208 | } |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 209 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 210 | protected: |
bsalomon | 4ee6bd8 | 2015-05-27 13:23:23 -0700 | [diff] [blame] | 211 | /** Subclasses must call this at the end of their constructors in order to apply caps |
| 212 | overrides requested by the client. Note that overrides will only reduce the caps never |
| 213 | expand them. */ |
| 214 | void applyOptionsOverrides(const GrContextOptions& options); |
| 215 | |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 216 | SkAutoTUnref<GrShaderCaps> fShaderCaps; |
| 217 | |
bsalomon | d08ea5f | 2015-02-20 06:58:13 -0800 | [diff] [blame] | 218 | bool fNPOTTextureTileSupport : 1; |
| 219 | bool fMipMapSupport : 1; |
| 220 | bool fTwoSidedStencilSupport : 1; |
| 221 | bool fStencilWrapOpsSupport : 1; |
bsalomon | d08ea5f | 2015-02-20 06:58:13 -0800 | [diff] [blame] | 222 | bool fDiscardRenderTargetSupport : 1; |
| 223 | bool fReuseScratchTextures : 1; |
| 224 | bool fGpuTracingSupport : 1; |
| 225 | bool fCompressedTexSubImageSupport : 1; |
| 226 | bool fOversizedStencilSupport : 1; |
cdalton | fd4167d | 2015-04-21 11:45:56 -0700 | [diff] [blame] | 227 | bool fTextureBarrierSupport : 1; |
bsalomon | 63b2196 | 2014-11-05 07:05:34 -0800 | [diff] [blame] | 228 | // Driver workaround |
bsalomon | d08ea5f | 2015-02-20 06:58:13 -0800 | [diff] [blame] | 229 | bool fUseDrawInsteadOfClear : 1; |
bsalomon | 63b2196 | 2014-11-05 07:05:34 -0800 | [diff] [blame] | 230 | |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 231 | BlendEquationSupport fBlendEquationSupport; |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 232 | uint32_t fMapBufferFlags; |
joshualitt | e5b74c6 | 2015-06-01 14:17:47 -0700 | [diff] [blame] | 233 | int fGeometryBufferMapThreshold; |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 234 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 235 | int fMaxRenderTargetSize; |
| 236 | int fMaxTextureSize; |
bsalomon | c59a1df | 2015-06-01 07:13:42 -0700 | [diff] [blame] | 237 | int fMinTextureSize; |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 238 | int fMaxSampleCount; |
| 239 | |
commit-bot@chromium.org | 6b7938f | 2013-10-15 14:18:16 +0000 | [diff] [blame] | 240 | // The first entry for each config is without msaa and the second is with. |
| 241 | bool fConfigRenderSupport[kGrPixelConfigCnt][2]; |
commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 242 | bool fConfigTextureSupport[kGrPixelConfigCnt]; |
commit-bot@chromium.org | 42dc813 | 2014-05-27 19:26:59 +0000 | [diff] [blame] | 243 | |
egdaniel | bc127a3 | 2014-09-19 12:07:43 -0700 | [diff] [blame] | 244 | private: |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 245 | bool fSupressPrints : 1; |
| 246 | bool fDrawPathMasksToCompressedTextureSupport : 1; |
| 247 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 248 | typedef SkRefCnt INHERITED; |
| 249 | }; |
| 250 | |
| 251 | #endif |