blob: 733c55bec4ec973caafb960a9d5d290d6a36a2ba [file] [log] [blame]
bsalomondc47ff72015-05-26 12:16:59 -07001
2/*
3 * Copyright 2015 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 */
8
9#include "GrCaps.h"
10#include "GrContextOptions.h"
11
12GrShaderCaps::GrShaderCaps() {
13 fShaderDerivativeSupport = false;
14 fGeometryShaderSupport = false;
15 fPathRenderingSupport = false;
16 fDstReadInShaderSupport = false;
17 fDualSourceBlendingSupport = false;
18 fMixedSamplesSupport = false;
19 fShaderPrecisionVaries = false;
20}
21
22static const char* shader_type_to_string(GrShaderType type) {
23 switch (type) {
24 case kVertex_GrShaderType:
25 return "vertex";
26 case kGeometry_GrShaderType:
27 return "geometry";
28 case kFragment_GrShaderType:
29 return "fragment";
30 }
31 return "";
32}
33
34static const char* precision_to_string(GrSLPrecision p) {
35 switch (p) {
36 case kLow_GrSLPrecision:
37 return "low";
38 case kMedium_GrSLPrecision:
39 return "medium";
40 case kHigh_GrSLPrecision:
41 return "high";
42 }
43 return "";
44}
45
46SkString GrShaderCaps::dump() const {
47 SkString r;
48 static const char* gNY[] = { "NO", "YES" };
49 r.appendf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport]);
50 r.appendf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]);
51 r.appendf("Path Rendering Support : %s\n", gNY[fPathRenderingSupport]);
52 r.appendf("Dst Read In Shader Support : %s\n", gNY[fDstReadInShaderSupport]);
53 r.appendf("Dual Source Blending Support : %s\n", gNY[fDualSourceBlendingSupport]);
54 r.appendf("Mixed Samples Support : %s\n", gNY[fMixedSamplesSupport]);
55
56 r.appendf("Shader Float Precisions (varies: %s):\n", gNY[fShaderPrecisionVaries]);
57
58 for (int s = 0; s < kGrShaderTypeCount; ++s) {
59 GrShaderType shaderType = static_cast<GrShaderType>(s);
60 r.appendf("\t%s:\n", shader_type_to_string(shaderType));
61 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
62 if (fFloatPrecisions[s][p].supported()) {
63 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
64 r.appendf("\t\t%s: log_low: %d log_high: %d bits: %d\n",
65 precision_to_string(precision),
66 fFloatPrecisions[s][p].fLogRangeLow,
67 fFloatPrecisions[s][p].fLogRangeHigh,
68 fFloatPrecisions[s][p].fBits);
69 }
70 }
71 }
72
73 return r;
74}
75
cdalton6fd158e2015-05-27 15:08:33 -070076void GrShaderCaps::applyOptionsOverrides(const GrContextOptions& options) {
77 fDualSourceBlendingSupport = fDualSourceBlendingSupport && !options.fSuppressDualSourceBlending;
bsalomon4ee6bd82015-05-27 13:23:23 -070078}
79
bsalomondc47ff72015-05-26 12:16:59 -070080///////////////////////////////////////////////////////////////////////////////
81
82GrCaps::GrCaps(const GrContextOptions& options) {
83 fMipMapSupport = false;
84 fNPOTTextureTileSupport = false;
85 fTwoSidedStencilSupport = false;
86 fStencilWrapOpsSupport = false;
87 fDiscardRenderTargetSupport = false;
88 fReuseScratchTextures = true;
robertphillips1b8e1b52015-06-24 06:54:10 -070089 fReuseScratchBuffers = true;
bsalomondc47ff72015-05-26 12:16:59 -070090 fGpuTracingSupport = false;
91 fCompressedTexSubImageSupport = false;
92 fOversizedStencilSupport = false;
93 fTextureBarrierSupport = false;
joshualitt58001552015-06-26 12:46:36 -070094 fSupportsInstancedDraws = false;
egdaniel51c8d402015-08-06 10:54:13 -070095 fFullClearIsFree = false;
bsalomondc47ff72015-05-26 12:16:59 -070096
97 fUseDrawInsteadOfClear = false;
98
99 fBlendEquationSupport = kBasic_BlendEquationSupport;
cdalton1dd05422015-06-12 09:01:18 -0700100 fAdvBlendEqBlacklist = 0;
101
bsalomondc47ff72015-05-26 12:16:59 -0700102 fMapBufferFlags = kNone_MapFlags;
103
104 fMaxRenderTargetSize = 0;
105 fMaxTextureSize = 0;
bsalomonc59a1df2015-06-01 07:13:42 -0700106 fMinTextureSize = 0;
bsalomondc47ff72015-05-26 12:16:59 -0700107 fMaxSampleCount = 0;
108
109 memset(fConfigRenderSupport, 0, sizeof(fConfigRenderSupport));
110 memset(fConfigTextureSupport, 0, sizeof(fConfigTextureSupport));
111
112 fSupressPrints = options.fSuppressPrints;
113 fDrawPathMasksToCompressedTextureSupport = options.fDrawPathToCompressedTexture;
joshualitt7224c862015-05-29 06:46:47 -0700114 fGeometryBufferMapThreshold = options.fGeometryBufferMapThreshold;
joshualitt83bc2292015-06-18 14:18:02 -0700115 fUseDrawInsteadOfPartialRenderTargetWrite = options.fUseDrawInsteadOfPartialRenderTargetWrite;
bsalomondc47ff72015-05-26 12:16:59 -0700116}
117
bsalomon4ee6bd82015-05-27 13:23:23 -0700118void GrCaps::applyOptionsOverrides(const GrContextOptions& options) {
119 fMaxTextureSize = SkTMin(fMaxTextureSize, options.fMaxTextureSizeOverride);
bsalomonc59a1df2015-06-01 07:13:42 -0700120 fMinTextureSize = SkTMax(fMinTextureSize, options.fMinTextureSizeOverride);
bsalomon4ee6bd82015-05-27 13:23:23 -0700121}
122
bsalomondc47ff72015-05-26 12:16:59 -0700123static SkString map_flags_to_string(uint32_t flags) {
124 SkString str;
125 if (GrCaps::kNone_MapFlags == flags) {
126 str = "none";
127 } else {
128 SkASSERT(GrCaps::kCanMap_MapFlag & flags);
129 SkDEBUGCODE(flags &= ~GrCaps::kCanMap_MapFlag);
130 str = "can_map";
131
132 if (GrCaps::kSubset_MapFlag & flags) {
133 str.append(" partial");
134 } else {
135 str.append(" full");
136 }
137 SkDEBUGCODE(flags &= ~GrCaps::kSubset_MapFlag);
138 }
139 SkASSERT(0 == flags); // Make sure we handled all the flags.
140 return str;
141}
142
143SkString GrCaps::dump() const {
144 SkString r;
145 static const char* gNY[] = {"NO", "YES"};
146 r.appendf("MIP Map Support : %s\n", gNY[fMipMapSupport]);
147 r.appendf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]);
148 r.appendf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]);
149 r.appendf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]);
150 r.appendf("Discard Render Target Support : %s\n", gNY[fDiscardRenderTargetSupport]);
151 r.appendf("Reuse Scratch Textures : %s\n", gNY[fReuseScratchTextures]);
robertphillips1b8e1b52015-06-24 06:54:10 -0700152 r.appendf("Reuse Scratch Buffers : %s\n", gNY[fReuseScratchBuffers]);
bsalomondc47ff72015-05-26 12:16:59 -0700153 r.appendf("Gpu Tracing Support : %s\n", gNY[fGpuTracingSupport]);
154 r.appendf("Compressed Update Support : %s\n", gNY[fCompressedTexSubImageSupport]);
155 r.appendf("Oversized Stencil Support : %s\n", gNY[fOversizedStencilSupport]);
156 r.appendf("Texture Barrier Support : %s\n", gNY[fTextureBarrierSupport]);
joshualitt58001552015-06-26 12:46:36 -0700157 r.appendf("Supports instanced draws : %s\n", gNY[fSupportsInstancedDraws]);
egdaniel51c8d402015-08-06 10:54:13 -0700158 r.appendf("Full screen clear is free : %s\n", gNY[fFullClearIsFree]);
bsalomondc47ff72015-05-26 12:16:59 -0700159 r.appendf("Draw Instead of Clear [workaround] : %s\n", gNY[fUseDrawInsteadOfClear]);
joshualitt83bc2292015-06-18 14:18:02 -0700160 r.appendf("Draw Instead of TexSubImage [workaround] : %s\n",
161 gNY[fUseDrawInsteadOfPartialRenderTargetWrite]);
cdalton1dd05422015-06-12 09:01:18 -0700162 if (this->advancedBlendEquationSupport()) {
163 r.appendf("Advanced Blend Equation Blacklist : 0x%x\n", fAdvBlendEqBlacklist);
164 }
bsalomondc47ff72015-05-26 12:16:59 -0700165
166 r.appendf("Max Texture Size : %d\n", fMaxTextureSize);
bsalomonc59a1df2015-06-01 07:13:42 -0700167 r.appendf("Min Texture Size : %d\n", fMinTextureSize);
bsalomondc47ff72015-05-26 12:16:59 -0700168 r.appendf("Max Render Target Size : %d\n", fMaxRenderTargetSize);
169 r.appendf("Max Sample Count : %d\n", fMaxSampleCount);
170
171 static const char* kBlendEquationSupportNames[] = {
172 "Basic",
173 "Advanced",
174 "Advanced Coherent",
175 };
176 GR_STATIC_ASSERT(0 == kBasic_BlendEquationSupport);
177 GR_STATIC_ASSERT(1 == kAdvanced_BlendEquationSupport);
178 GR_STATIC_ASSERT(2 == kAdvancedCoherent_BlendEquationSupport);
179 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kBlendEquationSupportNames) == kLast_BlendEquationSupport + 1);
180
181 r.appendf("Blend Equation Support : %s\n",
182 kBlendEquationSupportNames[fBlendEquationSupport]);
183 r.appendf("Map Buffer Support : %s\n",
184 map_flags_to_string(fMapBufferFlags).c_str());
185
186 static const char* kConfigNames[] = {
187 "Unknown", // kUnknown_GrPixelConfig
188 "Alpha8", // kAlpha_8_GrPixelConfig,
189 "Index8", // kIndex_8_GrPixelConfig,
190 "RGB565", // kRGB_565_GrPixelConfig,
191 "RGBA444", // kRGBA_4444_GrPixelConfig,
192 "RGBA8888", // kRGBA_8888_GrPixelConfig,
193 "BGRA8888", // kBGRA_8888_GrPixelConfig,
194 "SRGBA8888",// kSRGBA_8888_GrPixelConfig,
195 "ETC1", // kETC1_GrPixelConfig,
196 "LATC", // kLATC_GrPixelConfig,
197 "R11EAC", // kR11_EAC_GrPixelConfig,
198 "ASTC12x12",// kASTC_12x12_GrPixelConfig,
199 "RGBAFloat",// kRGBA_float_GrPixelConfig
200 "AlphaHalf",// kAlpha_half_GrPixelConfig
201 "RGBAHalf", // kRGBA_half_GrPixelConfig
202 };
203 GR_STATIC_ASSERT(0 == kUnknown_GrPixelConfig);
204 GR_STATIC_ASSERT(1 == kAlpha_8_GrPixelConfig);
205 GR_STATIC_ASSERT(2 == kIndex_8_GrPixelConfig);
206 GR_STATIC_ASSERT(3 == kRGB_565_GrPixelConfig);
207 GR_STATIC_ASSERT(4 == kRGBA_4444_GrPixelConfig);
208 GR_STATIC_ASSERT(5 == kRGBA_8888_GrPixelConfig);
209 GR_STATIC_ASSERT(6 == kBGRA_8888_GrPixelConfig);
210 GR_STATIC_ASSERT(7 == kSRGBA_8888_GrPixelConfig);
211 GR_STATIC_ASSERT(8 == kETC1_GrPixelConfig);
212 GR_STATIC_ASSERT(9 == kLATC_GrPixelConfig);
213 GR_STATIC_ASSERT(10 == kR11_EAC_GrPixelConfig);
214 GR_STATIC_ASSERT(11 == kASTC_12x12_GrPixelConfig);
215 GR_STATIC_ASSERT(12 == kRGBA_float_GrPixelConfig);
216 GR_STATIC_ASSERT(13 == kAlpha_half_GrPixelConfig);
217 GR_STATIC_ASSERT(14 == kRGBA_half_GrPixelConfig);
218 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kConfigNames) == kGrPixelConfigCnt);
219
220 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][0]);
221 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][1]);
222
223 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
224 r.appendf("%s is renderable: %s, with MSAA: %s\n",
225 kConfigNames[i],
226 gNY[fConfigRenderSupport[i][0]],
227 gNY[fConfigRenderSupport[i][1]]);
228 }
229
230 SkASSERT(!fConfigTextureSupport[kUnknown_GrPixelConfig]);
231
232 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
233 r.appendf("%s is uploadable to a texture: %s\n",
234 kConfigNames[i],
235 gNY[fConfigTextureSupport[i]]);
236 }
237
238 return r;
239}