blob: c1b7381cc20f43a350ac920c0da42859bc062c50 [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
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +000011#include "GrTypes.h"
bsalomon17168df2014-12-09 09:00:49 -080012#include "GrTypesPriv.h"
13#include "GrShaderVar.h"
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +000014#include "SkRefCnt.h"
15#include "SkString.h"
16
jvanverthe9c0fc62015-04-29 11:18:05 -070017class GrShaderCaps : public SkRefCnt {
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000018public:
jvanverthe9c0fc62015-04-29 11:18:05 -070019 SK_DECLARE_INST_COUNT(GrShaderCaps)
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000020
bsalomon17168df2014-12-09 09:00:49 -080021 /** Info about shader variable precision within a given shader stage. That is, this info
bsalomonc0bd6482014-12-09 10:04:14 -080022 is relevant to a float (or vecNf) variable declared with a GrSLPrecision
bsalomon17168df2014-12-09 09:00:49 -080023 in a given GrShaderType. The info here is hoisted from the OpenGL spec. */
24 struct PrecisionInfo {
25 PrecisionInfo() {
26 fLogRangeLow = 0;
27 fLogRangeHigh = 0;
28 fBits = 0;
29 }
30
31 /** Is this precision level allowed in the shader stage? */
32 bool supported() const { return 0 != fBits; }
33
34 bool operator==(const PrecisionInfo& that) const {
35 return fLogRangeLow == that.fLogRangeLow && fLogRangeHigh == that.fLogRangeHigh &&
36 fBits == that.fBits;
37 }
38 bool operator!=(const PrecisionInfo& that) const { return !(*this == that); }
39
40 /** floor(log2(|min_value|)) */
41 int fLogRangeLow;
42 /** floor(log2(|max_value|)) */
43 int fLogRangeHigh;
jvanverthe9c0fc62015-04-29 11:18:05 -070044 /** Number of bits of precision. As defined in OpenGL (with names modified to reflect this
bsalomon17168df2014-12-09 09:00:49 -080045 struct) :
46 """
jvanverthe9c0fc62015-04-29 11:18:05 -070047 If the smallest representable value greater than 1 is 1 + e, then fBits will
48 contain floor(log2(e)), and every value in the range [2^fLogRangeLow,
49 2^fLogRangeHigh] can be represented to at least one part in 2^fBits.
50 """
bsalomon17168df2014-12-09 09:00:49 -080051 */
52 int fBits;
53 };
54
jvanverthe9c0fc62015-04-29 11:18:05 -070055 GrShaderCaps() {
56 this->reset();
57 }
58 virtual ~GrShaderCaps() {}
59 GrShaderCaps(const GrShaderCaps& other) : INHERITED() {
60 *this = other;
61 }
62 GrShaderCaps& operator= (const GrShaderCaps&);
63
64 virtual void reset();
65 virtual SkString dump() const;
66
67 bool shaderDerivativeSupport() const { return fShaderDerivativeSupport; }
68 bool geometryShaderSupport() const { return fGeometryShaderSupport; }
69 bool pathRenderingSupport() const { return fPathRenderingSupport; }
70 bool dstReadInShaderSupport() const { return fDstReadInShaderSupport; }
71 bool dualSourceBlendingSupport() const { return fDualSourceBlendingSupport; }
72
73 /**
74 * Get the precision info for a variable of type kFloat_GrSLType, kVec2f_GrSLType, etc in a
75 * given shader type. If the shader type is not supported or the precision level is not
76 * supported in that shader type then the returned struct will report false when supported() is
77 * called.
78 */
79 const PrecisionInfo& getFloatShaderPrecisionInfo(GrShaderType shaderType,
80 GrSLPrecision precision) const {
81 return fFloatPrecisions[shaderType][precision];
82 };
83
84 /**
85 * Is there any difference between the float shader variable precision types? If this is true
86 * then unless the shader type is not supported, any call to getFloatShaderPrecisionInfo() would
87 * report the same info for all precisions in all shader types.
88 */
89 bool floatPrecisionVaries() const { return fShaderPrecisionVaries; }
90
91protected:
92 bool fShaderDerivativeSupport : 1;
93 bool fGeometryShaderSupport : 1;
94 bool fPathRenderingSupport : 1;
95 bool fDstReadInShaderSupport : 1;
96 bool fDualSourceBlendingSupport : 1;
97
98 bool fShaderPrecisionVaries;
99 PrecisionInfo fFloatPrecisions[kGrShaderTypeCount][kGrSLPrecisionCount];
100
101private:
102 typedef SkRefCnt INHERITED;
103};
104
105/**
bsalomon4b91f762015-05-19 09:29:46 -0700106 * Represents the capabilities of a GrContext.
jvanverthe9c0fc62015-04-29 11:18:05 -0700107 */
bsalomon4b91f762015-05-19 09:29:46 -0700108class GrCaps : public SkRefCnt {
jvanverthe9c0fc62015-04-29 11:18:05 -0700109public:
bsalomon4b91f762015-05-19 09:29:46 -0700110 SK_DECLARE_INST_COUNT(GrCaps)
bsalomon17168df2014-12-09 09:00:49 -0800111
bsalomon4b91f762015-05-19 09:29:46 -0700112 GrCaps() {
jvanverthe9c0fc62015-04-29 11:18:05 -0700113 fShaderCaps.reset(NULL);
egdanielbc127a32014-09-19 12:07:43 -0700114 this->reset();
115 }
bsalomon4b91f762015-05-19 09:29:46 -0700116 GrCaps(const GrCaps& other) : INHERITED() {
egdanielbc127a32014-09-19 12:07:43 -0700117 *this = other;
118 }
bsalomon4b91f762015-05-19 09:29:46 -0700119 virtual ~GrCaps() {}
120 GrCaps& operator= (const GrCaps&);
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000121
122 virtual void reset();
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +0000123 virtual SkString dump() const;
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000124
jvanverthe9c0fc62015-04-29 11:18:05 -0700125 GrShaderCaps* shaderCaps() const { return fShaderCaps; }
126
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000127 bool npotTextureTileSupport() const { return fNPOTTextureTileSupport; }
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000128 /** To avoid as-yet-unnecessary complexity we don't allow any partial support of MIP Maps (e.g.
129 only for POT textures) */
130 bool mipMapSupport() const { return fMipMapSupport; }
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000131 bool twoSidedStencilSupport() const { return fTwoSidedStencilSupport; }
132 bool stencilWrapOpsSupport() const { return fStencilWrapOpsSupport; }
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +0000133 bool discardRenderTargetSupport() const { return fDiscardRenderTargetSupport; }
egdanielbdad9c32015-03-05 12:19:17 -0800134#if GR_FORCE_GPU_TRACE_DEBUGGING
135 bool gpuTracingSupport() const { return true; }
136#else
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000137 bool gpuTracingSupport() const { return fGpuTracingSupport; }
egdanielbdad9c32015-03-05 12:19:17 -0800138#endif
krajcevski786978162014-07-30 11:25:44 -0700139 bool compressedTexSubImageSupport() const { return fCompressedTexSubImageSupport; }
bsalomond08ea5f2015-02-20 06:58:13 -0800140 bool oversizedStencilSupport() const { return fOversizedStencilSupport; }
cdaltonfd4167d2015-04-21 11:45:56 -0700141 bool textureBarrierSupport() const { return fTextureBarrierSupport; }
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +0000142
bsalomon63b21962014-11-05 07:05:34 -0800143 bool useDrawInsteadOfClear() const { return fUseDrawInsteadOfClear; }
144
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000145 /**
cdalton8917d622015-05-06 13:40:21 -0700146 * Indicates the capabilities of the fixed function blend unit.
147 */
148 enum BlendEquationSupport {
149 kBasic_BlendEquationSupport, //<! Support to select the operator that
150 // combines src and dst terms.
151 kAdvanced_BlendEquationSupport, //<! Additional fixed function support for specific
152 // SVG/PDF blend modes. Requires blend barriers.
153 kAdvancedCoherent_BlendEquationSupport, //<! Advanced blend equation support that does not
154 // require blend barriers, and permits overlap.
155
156 kLast_BlendEquationSupport = kAdvancedCoherent_BlendEquationSupport
157 };
158
159 BlendEquationSupport blendEquationSupport() const { return fBlendEquationSupport; }
160
161 bool advancedBlendEquationSupport() const {
162 return fBlendEquationSupport >= kAdvanced_BlendEquationSupport;
163 }
164
165 bool advancedCoherentBlendEquationSupport() const {
166 return kAdvancedCoherent_BlendEquationSupport == fBlendEquationSupport;
167 }
168
169 /**
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000170 * Indicates whether GPU->CPU memory mapping for GPU resources such as vertex buffers and
171 * textures allows partial mappings or full mappings.
172 */
173 enum MapFlags {
174 kNone_MapFlags = 0x0, //<! Cannot map the resource.
175
176 kCanMap_MapFlag = 0x1, //<! The resource can be mapped. Must be set for any of
177 // the other flags to have meaning.k
178 kSubset_MapFlag = 0x2, //<! The resource can be partially mapped.
179 };
180
181 uint32_t mapBufferFlags() const { return fMapBufferFlags; }
182
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +0000183 // Scratch textures not being reused means that those scratch textures
skia.committer@gmail.com7ed98df2013-10-31 07:01:53 +0000184 // that we upload to (i.e., don't have a render target) will not be
robertphillips@google.com2d2e5c42013-10-30 21:30:43 +0000185 // recycled in the texture cache. This is to prevent ghosting by drivers
186 // (in particular for deferred architectures).
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000187 bool reuseScratchTextures() const { return fReuseScratchTextures; }
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000188
189 int maxRenderTargetSize() const { return fMaxRenderTargetSize; }
190 int maxTextureSize() const { return fMaxTextureSize; }
191 // Will be 0 if MSAA is not supported
192 int maxSampleCount() const { return fMaxSampleCount; }
193
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000194 bool isConfigRenderable(GrPixelConfig config, bool withMSAA) const {
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000195 SkASSERT(kGrPixelConfigCnt > config);
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000196 return fConfigRenderSupport[config][withMSAA];
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000197 }
198
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000199 bool isConfigTexturable(GrPixelConfig config) const {
200 SkASSERT(kGrPixelConfigCnt > config);
201 return fConfigTextureSupport[config];
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +0000202 }
203
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000204protected:
jvanverthe9c0fc62015-04-29 11:18:05 -0700205 SkAutoTUnref<GrShaderCaps> fShaderCaps;
206
bsalomond08ea5f2015-02-20 06:58:13 -0800207 bool fNPOTTextureTileSupport : 1;
208 bool fMipMapSupport : 1;
209 bool fTwoSidedStencilSupport : 1;
210 bool fStencilWrapOpsSupport : 1;
bsalomond08ea5f2015-02-20 06:58:13 -0800211 bool fDiscardRenderTargetSupport : 1;
212 bool fReuseScratchTextures : 1;
213 bool fGpuTracingSupport : 1;
214 bool fCompressedTexSubImageSupport : 1;
215 bool fOversizedStencilSupport : 1;
cdaltonfd4167d2015-04-21 11:45:56 -0700216 bool fTextureBarrierSupport : 1;
bsalomon63b21962014-11-05 07:05:34 -0800217 // Driver workaround
bsalomond08ea5f2015-02-20 06:58:13 -0800218 bool fUseDrawInsteadOfClear : 1;
bsalomon63b21962014-11-05 07:05:34 -0800219
cdalton8917d622015-05-06 13:40:21 -0700220 BlendEquationSupport fBlendEquationSupport;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000221 uint32_t fMapBufferFlags;
222
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000223 int fMaxRenderTargetSize;
224 int fMaxTextureSize;
225 int fMaxSampleCount;
226
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000227 // The first entry for each config is without msaa and the second is with.
228 bool fConfigRenderSupport[kGrPixelConfigCnt][2];
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000229 bool fConfigTextureSupport[kGrPixelConfigCnt];
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +0000230
egdanielbc127a32014-09-19 12:07:43 -0700231private:
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000232 typedef SkRefCnt INHERITED;
233};
234
235#endif