bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 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 | |
| 8 | #include "GrCaps.h" |
Greg Daniel | f5d8758 | 2017-12-18 14:48:15 -0500 | [diff] [blame] | 9 | #include "GrBackendSurface.h" |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 10 | #include "GrContextOptions.h" |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 11 | #include "GrSurface.h" |
| 12 | #include "GrSurfaceProxy.h" |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 13 | #include "GrTypesPriv.h" |
csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 14 | #include "GrWindowRectangles.h" |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 15 | #include "SkJSONWriter.h" |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 16 | |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 17 | GrCaps::GrCaps(const GrContextOptions& options) { |
| 18 | fMipMapSupport = false; |
| 19 | fNPOTTextureTileSupport = false; |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 20 | fSRGBSupport = false; |
brianosman | 35b784d | 2016-05-05 11:52:53 -0700 | [diff] [blame] | 21 | fSRGBWriteControl = false; |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 22 | fDiscardRenderTargetSupport = false; |
| 23 | fReuseScratchTextures = true; |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 24 | fReuseScratchBuffers = true; |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 25 | fGpuTracingSupport = false; |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 26 | fOversizedStencilSupport = false; |
| 27 | fTextureBarrierSupport = false; |
Robert Phillips | 7f86192 | 2018-01-30 13:13:42 +0000 | [diff] [blame] | 28 | fSampleLocationsSupport = false; |
csmartdalton | 2b5f2cb | 2016-06-10 14:06:32 -0700 | [diff] [blame] | 29 | fMultisampleDisableSupport = false; |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 30 | fInstanceAttribSupport = false; |
egdaniel | eed519e | 2016-01-15 11:36:18 -0800 | [diff] [blame] | 31 | fUsesMixedSamples = false; |
Chris Dalton | 27059d3 | 2018-01-23 14:06:50 -0700 | [diff] [blame] | 32 | fUsePrimitiveRestart = false; |
csmartdalton | 485a120 | 2016-07-13 10:16:32 -0700 | [diff] [blame] | 33 | fPreferClientSideDynamicBuffers = false; |
Chris Dalton | 344e903 | 2017-12-11 15:42:09 -0700 | [diff] [blame] | 34 | fPreferFullscreenClears = false; |
bsalomon | 7dea7b7 | 2015-08-19 08:26:51 -0700 | [diff] [blame] | 35 | fMustClearUploadedBufferData = false; |
Kevin Lubick | 61a5f0a | 2019-03-28 09:47:15 -0400 | [diff] [blame] | 36 | fShouldInitializeTextures = false; |
Greg Daniel | b2acf0a | 2018-09-12 09:17:11 -0400 | [diff] [blame] | 37 | fSupportsAHardwareBufferImages = false; |
jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 38 | fFenceSyncSupport = false; |
Brian Osman | 2c2bc11 | 2017-02-28 10:02:49 -0500 | [diff] [blame] | 39 | fCrossContextTextureSupport = false; |
Brian Osman | 499bf1a | 2018-09-17 11:32:42 -0400 | [diff] [blame] | 40 | fHalfFloatVertexAttributeSupport = false; |
Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 41 | fDynamicStateArrayGeometryProcessorTextureSupport = false; |
Michael Ludwig | a21d196 | 2019-01-11 15:26:22 -0500 | [diff] [blame] | 42 | fPerformPartialClearsAsDraws = false; |
| 43 | fPerformColorClearsAsDraws = false; |
| 44 | fPerformStencilClearsAsDraws = false; |
Chris Dalton | a8fbeba | 2019-03-30 00:31:23 -0600 | [diff] [blame] | 45 | fAllowCoverageCounting = false; |
Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 46 | fTransferBufferSupport = false; |
Chris Dalton | a8fbeba | 2019-03-30 00:31:23 -0600 | [diff] [blame] | 47 | fDriverBlacklistCCPR = false; |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 48 | |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 49 | fBlendEquationSupport = kBasic_BlendEquationSupport; |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 50 | fAdvBlendEqBlacklist = 0; |
| 51 | |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 52 | fMapBufferFlags = kNone_MapFlags; |
| 53 | |
bsalomon | 7dbd45d | 2016-03-23 10:40:53 -0700 | [diff] [blame] | 54 | fMaxVertexAttributes = 0; |
egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 55 | fMaxRenderTargetSize = 1; |
Chris Dalton | 2612bae | 2018-02-22 13:41:37 -0700 | [diff] [blame] | 56 | fMaxPreferredRenderTargetSize = 1; |
egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 57 | fMaxTextureSize = 1; |
csmartdalton | 9bc1187 | 2016-08-09 12:42:47 -0700 | [diff] [blame] | 58 | fMaxWindowRectangles = 0; |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 59 | |
Chris Dalton | 584a79a | 2017-11-15 13:14:01 -0700 | [diff] [blame] | 60 | // An default count of 4 was chosen because of the common pattern in Blink of: |
| 61 | // isect RR |
| 62 | // diff RR |
| 63 | // isect convex_poly |
| 64 | // isect convex_poly |
| 65 | // when drawing rounded div borders. |
| 66 | fMaxClipAnalyticFPs = 4; |
| 67 | |
robertphillips | caef345 | 2015-11-11 13:18:11 -0800 | [diff] [blame] | 68 | fSuppressPrints = options.fSuppressPrints; |
Brian Osman | 195c05b | 2017-08-30 15:14:04 -0400 | [diff] [blame] | 69 | #if GR_TEST_UTILS |
Jim Van Verth | fbdc080 | 2017-05-02 16:15:53 -0400 | [diff] [blame] | 70 | fWireframeMode = options.fWireframeMode; |
Brian Osman | 195c05b | 2017-08-30 15:14:04 -0400 | [diff] [blame] | 71 | #else |
| 72 | fWireframeMode = false; |
| 73 | #endif |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 74 | fBufferMapThreshold = options.fBufferMapThreshold; |
Eric Karl | 5c77975 | 2017-05-08 12:02:07 -0700 | [diff] [blame] | 75 | fAvoidStencilBuffers = false; |
Greg Daniel | 4374e96 | 2018-09-28 15:09:47 -0400 | [diff] [blame] | 76 | fAvoidWritePixelsFastPath = false; |
robertphillips | 6392668 | 2015-08-20 09:39:02 -0700 | [diff] [blame] | 77 | |
| 78 | fPreferVRAMUseOverFlushes = true; |
Adrienne Walker | ab7181d | 2018-05-14 14:02:03 -0700 | [diff] [blame] | 79 | |
Chris Dalton | 0dffbab | 2019-03-27 13:08:50 -0600 | [diff] [blame] | 80 | fPreferTrianglesOverSampleMask = false; |
| 81 | |
Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 82 | // Default to true, allow older versions of OpenGL to disable explicitly |
| 83 | fClampToBorderSupport = true; |
| 84 | |
Adrienne Walker | ab7181d | 2018-05-14 14:02:03 -0700 | [diff] [blame] | 85 | fDriverBugWorkarounds = options.fDriverBugWorkarounds; |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 86 | } |
| 87 | |
bsalomon | 4ee6bd8 | 2015-05-27 13:23:23 -0700 | [diff] [blame] | 88 | void GrCaps::applyOptionsOverrides(const GrContextOptions& options) { |
csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 89 | this->onApplyOptionsOverrides(options); |
Brian Salomon | 01b476a | 2018-01-23 11:06:41 -0500 | [diff] [blame] | 90 | if (options.fDisableDriverCorrectnessWorkarounds) { |
Chris Dalton | a8fbeba | 2019-03-30 00:31:23 -0600 | [diff] [blame] | 91 | SkASSERT(!fDriverBlacklistCCPR); |
Brian Salomon | 01b476a | 2018-01-23 11:06:41 -0500 | [diff] [blame] | 92 | SkASSERT(!fAvoidStencilBuffers); |
| 93 | SkASSERT(!fAdvBlendEqBlacklist); |
Michael Ludwig | a21d196 | 2019-01-11 15:26:22 -0500 | [diff] [blame] | 94 | SkASSERT(!fPerformColorClearsAsDraws); |
| 95 | SkASSERT(!fPerformStencilClearsAsDraws); |
| 96 | // Don't check the partial-clear workaround, since that is a backend limitation, not a |
| 97 | // driver workaround (it just so happens the fallbacks are the same). |
| 98 | } |
| 99 | if (GrContextOptions::Enable::kNo == options.fUseDrawInsteadOfClear) { |
| 100 | fPerformColorClearsAsDraws = false; |
| 101 | fPerformStencilClearsAsDraws = false; |
| 102 | } else if (GrContextOptions::Enable::kYes == options.fUseDrawInsteadOfClear) { |
| 103 | fPerformColorClearsAsDraws = true; |
| 104 | fPerformStencilClearsAsDraws = true; |
Brian Salomon | 01b476a | 2018-01-23 11:06:41 -0500 | [diff] [blame] | 105 | } |
| 106 | |
Chris Dalton | a8fbeba | 2019-03-30 00:31:23 -0600 | [diff] [blame] | 107 | fAllowCoverageCounting = !options.fDisableCoverageCountingPaths; |
| 108 | |
bsalomon | 4ee6bd8 | 2015-05-27 13:23:23 -0700 | [diff] [blame] | 109 | fMaxTextureSize = SkTMin(fMaxTextureSize, options.fMaxTextureSizeOverride); |
Brian Osman | 195c05b | 2017-08-30 15:14:04 -0400 | [diff] [blame] | 110 | fMaxTileSize = fMaxTextureSize; |
| 111 | #if GR_TEST_UTILS |
bsalomon | 8c07b7a | 2015-11-02 11:36:52 -0800 | [diff] [blame] | 112 | // If the max tile override is zero, it means we should use the max texture size. |
Brian Osman | 195c05b | 2017-08-30 15:14:04 -0400 | [diff] [blame] | 113 | if (options.fMaxTileSizeOverride && options.fMaxTileSizeOverride < fMaxTextureSize) { |
bsalomon | 8c07b7a | 2015-11-02 11:36:52 -0800 | [diff] [blame] | 114 | fMaxTileSize = options.fMaxTileSizeOverride; |
| 115 | } |
Chris Dalton | 040238b | 2017-12-18 14:22:34 -0700 | [diff] [blame] | 116 | if (options.fSuppressGeometryShaders) { |
| 117 | fShaderCaps->fGeometryShaderSupport = false; |
| 118 | } |
Brian Osman | 195c05b | 2017-08-30 15:14:04 -0400 | [diff] [blame] | 119 | #endif |
csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 120 | if (fMaxWindowRectangles > GrWindowRectangles::kMaxWindows) { |
csmartdalton | 7535f41 | 2016-08-23 06:51:00 -0700 | [diff] [blame] | 121 | SkDebugf("WARNING: capping window rectangles at %i. HW advertises support for %i.\n", |
| 122 | GrWindowRectangles::kMaxWindows, fMaxWindowRectangles); |
csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 123 | fMaxWindowRectangles = GrWindowRectangles::kMaxWindows; |
| 124 | } |
Eric Karl | 5c77975 | 2017-05-08 12:02:07 -0700 | [diff] [blame] | 125 | fAvoidStencilBuffers = options.fAvoidStencilBuffers; |
Adrienne Walker | ab7181d | 2018-05-14 14:02:03 -0700 | [diff] [blame] | 126 | |
| 127 | fDriverBugWorkarounds.applyOverrides(options.fDriverBugWorkarounds); |
bsalomon | 4ee6bd8 | 2015-05-27 13:23:23 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Kevin Lubick | f4def34 | 2018-10-04 12:52:50 -0400 | [diff] [blame] | 130 | |
| 131 | #ifdef SK_ENABLE_DUMP_GPU |
| 132 | static const char* pixel_config_name(GrPixelConfig config) { |
| 133 | switch (config) { |
| 134 | case kUnknown_GrPixelConfig: return "Unknown"; |
| 135 | case kAlpha_8_GrPixelConfig: return "Alpha8"; |
| 136 | case kAlpha_8_as_Alpha_GrPixelConfig: return "Alpha8_asAlpha"; |
| 137 | case kAlpha_8_as_Red_GrPixelConfig: return "Alpha8_asRed"; |
| 138 | case kGray_8_GrPixelConfig: return "Gray8"; |
| 139 | case kGray_8_as_Lum_GrPixelConfig: return "Gray8_asLum"; |
| 140 | case kGray_8_as_Red_GrPixelConfig: return "Gray8_asRed"; |
| 141 | case kRGB_565_GrPixelConfig: return "RGB565"; |
| 142 | case kRGBA_4444_GrPixelConfig: return "RGBA444"; |
| 143 | case kRGBA_8888_GrPixelConfig: return "RGBA8888"; |
| 144 | case kRGB_888_GrPixelConfig: return "RGB888"; |
Greg Daniel | f259b8b | 2019-02-14 09:03:43 -0500 | [diff] [blame] | 145 | case kRGB_888X_GrPixelConfig: return "RGB888X"; |
Jim Van Verth | 69e5785 | 2018-12-05 13:38:59 -0500 | [diff] [blame] | 146 | case kRG_88_GrPixelConfig: return "RG88"; |
Kevin Lubick | f4def34 | 2018-10-04 12:52:50 -0400 | [diff] [blame] | 147 | case kBGRA_8888_GrPixelConfig: return "BGRA8888"; |
| 148 | case kSRGBA_8888_GrPixelConfig: return "SRGBA8888"; |
| 149 | case kSBGRA_8888_GrPixelConfig: return "SBGRA8888"; |
| 150 | case kRGBA_1010102_GrPixelConfig: return "RGBA1010102"; |
| 151 | case kRGBA_float_GrPixelConfig: return "RGBAFloat"; |
| 152 | case kRG_float_GrPixelConfig: return "RGFloat"; |
| 153 | case kAlpha_half_GrPixelConfig: return "AlphaHalf"; |
| 154 | case kAlpha_half_as_Red_GrPixelConfig: return "AlphaHalf_asRed"; |
| 155 | case kRGBA_half_GrPixelConfig: return "RGBAHalf"; |
Brian Osman | d0626aa | 2019-03-11 15:28:06 -0400 | [diff] [blame] | 156 | case kRGBA_half_Clamped_GrPixelConfig: return "RGBAHalfClamped"; |
Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 157 | case kRGB_ETC1_GrPixelConfig: return "RGBETC1"; |
Kevin Lubick | f4def34 | 2018-10-04 12:52:50 -0400 | [diff] [blame] | 158 | } |
| 159 | SK_ABORT("Invalid pixel config"); |
| 160 | return "<invalid>"; |
| 161 | } |
| 162 | |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 163 | static SkString map_flags_to_string(uint32_t flags) { |
| 164 | SkString str; |
| 165 | if (GrCaps::kNone_MapFlags == flags) { |
| 166 | str = "none"; |
| 167 | } else { |
| 168 | SkASSERT(GrCaps::kCanMap_MapFlag & flags); |
| 169 | SkDEBUGCODE(flags &= ~GrCaps::kCanMap_MapFlag); |
| 170 | str = "can_map"; |
| 171 | |
| 172 | if (GrCaps::kSubset_MapFlag & flags) { |
| 173 | str.append(" partial"); |
| 174 | } else { |
| 175 | str.append(" full"); |
| 176 | } |
| 177 | SkDEBUGCODE(flags &= ~GrCaps::kSubset_MapFlag); |
| 178 | } |
| 179 | SkASSERT(0 == flags); // Make sure we handled all the flags. |
| 180 | return str; |
| 181 | } |
| 182 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 183 | void GrCaps::dumpJSON(SkJSONWriter* writer) const { |
| 184 | writer->beginObject(); |
jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 185 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 186 | writer->appendBool("MIP Map Support", fMipMapSupport); |
| 187 | writer->appendBool("NPOT Texture Tile Support", fNPOTTextureTileSupport); |
| 188 | writer->appendBool("sRGB Support", fSRGBSupport); |
| 189 | writer->appendBool("sRGB Write Control", fSRGBWriteControl); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 190 | writer->appendBool("Discard Render Target Support", fDiscardRenderTargetSupport); |
| 191 | writer->appendBool("Reuse Scratch Textures", fReuseScratchTextures); |
| 192 | writer->appendBool("Reuse Scratch Buffers", fReuseScratchBuffers); |
| 193 | writer->appendBool("Gpu Tracing Support", fGpuTracingSupport); |
| 194 | writer->appendBool("Oversized Stencil Support", fOversizedStencilSupport); |
| 195 | writer->appendBool("Texture Barrier Support", fTextureBarrierSupport); |
Robert Phillips | 7f86192 | 2018-01-30 13:13:42 +0000 | [diff] [blame] | 196 | writer->appendBool("Sample Locations Support", fSampleLocationsSupport); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 197 | writer->appendBool("Multisample disable support", fMultisampleDisableSupport); |
| 198 | writer->appendBool("Instance Attrib Support", fInstanceAttribSupport); |
| 199 | writer->appendBool("Uses Mixed Samples", fUsesMixedSamples); |
Chris Dalton | 27059d3 | 2018-01-23 14:06:50 -0700 | [diff] [blame] | 200 | writer->appendBool("Use primitive restart", fUsePrimitiveRestart); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 201 | writer->appendBool("Prefer client-side dynamic buffers", fPreferClientSideDynamicBuffers); |
Chris Dalton | 344e903 | 2017-12-11 15:42:09 -0700 | [diff] [blame] | 202 | writer->appendBool("Prefer fullscreen clears", fPreferFullscreenClears); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 203 | writer->appendBool("Must clear buffer memory", fMustClearUploadedBufferData); |
Kevin Lubick | 61a5f0a | 2019-03-28 09:47:15 -0400 | [diff] [blame] | 204 | writer->appendBool("Should initialize textures", fShouldInitializeTextures); |
Greg Daniel | b2acf0a | 2018-09-12 09:17:11 -0400 | [diff] [blame] | 205 | writer->appendBool("Supports importing AHardwareBuffers", fSupportsAHardwareBufferImages); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 206 | writer->appendBool("Fence sync support", fFenceSyncSupport); |
| 207 | writer->appendBool("Cross context texture support", fCrossContextTextureSupport); |
Brian Osman | 499bf1a | 2018-09-17 11:32:42 -0400 | [diff] [blame] | 208 | writer->appendBool("Half float vertex attribute support", fHalfFloatVertexAttributeSupport); |
Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 209 | writer->appendBool("Specify GeometryProcessor textures as a dynamic state array", |
| 210 | fDynamicStateArrayGeometryProcessorTextureSupport); |
Michael Ludwig | a21d196 | 2019-01-11 15:26:22 -0500 | [diff] [blame] | 211 | writer->appendBool("Use draws for partial clears", fPerformPartialClearsAsDraws); |
| 212 | writer->appendBool("Use draws for color clears", fPerformColorClearsAsDraws); |
| 213 | writer->appendBool("Use draws for stencil clip clears", fPerformStencilClearsAsDraws); |
Chris Dalton | a8fbeba | 2019-03-30 00:31:23 -0600 | [diff] [blame] | 214 | writer->appendBool("Allow coverage counting shortcuts", fAllowCoverageCounting); |
Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 215 | writer->appendBool("Supports transfer buffers", fTransferBufferSupport); |
Chris Dalton | a8fbeba | 2019-03-30 00:31:23 -0600 | [diff] [blame] | 216 | writer->appendBool("Blacklist CCPR on current driver [workaround]", fDriverBlacklistCCPR); |
Michael Ludwig | a21d196 | 2019-01-11 15:26:22 -0500 | [diff] [blame] | 217 | writer->appendBool("Clamp-to-border", fClampToBorderSupport); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 218 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 219 | writer->appendBool("Prefer VRAM Use over flushes [workaround]", fPreferVRAMUseOverFlushes); |
Chris Dalton | 0dffbab | 2019-03-27 13:08:50 -0600 | [diff] [blame] | 220 | writer->appendBool("Prefer more triangles over sample mask [MSAA only]", |
| 221 | fPreferTrianglesOverSampleMask); |
Robert Phillips | f2ec024 | 2018-03-01 16:51:25 -0500 | [diff] [blame] | 222 | writer->appendBool("Avoid stencil buffers [workaround]", fAvoidStencilBuffers); |
robertphillips | 6392668 | 2015-08-20 09:39:02 -0700 | [diff] [blame] | 223 | |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 224 | if (this->advancedBlendEquationSupport()) { |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 225 | writer->appendHexU32("Advanced Blend Equation Blacklist", fAdvBlendEqBlacklist); |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 226 | } |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 227 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 228 | writer->appendS32("Max Vertex Attributes", fMaxVertexAttributes); |
| 229 | writer->appendS32("Max Texture Size", fMaxTextureSize); |
| 230 | writer->appendS32("Max Render Target Size", fMaxRenderTargetSize); |
Chris Dalton | 2612bae | 2018-02-22 13:41:37 -0700 | [diff] [blame] | 231 | writer->appendS32("Max Preferred Render Target Size", fMaxPreferredRenderTargetSize); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 232 | writer->appendS32("Max Window Rectangles", fMaxWindowRectangles); |
Chris Dalton | 584a79a | 2017-11-15 13:14:01 -0700 | [diff] [blame] | 233 | writer->appendS32("Max Clip Analytic Fragment Processors", fMaxClipAnalyticFPs); |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 234 | |
| 235 | static const char* kBlendEquationSupportNames[] = { |
| 236 | "Basic", |
| 237 | "Advanced", |
| 238 | "Advanced Coherent", |
| 239 | }; |
| 240 | GR_STATIC_ASSERT(0 == kBasic_BlendEquationSupport); |
| 241 | GR_STATIC_ASSERT(1 == kAdvanced_BlendEquationSupport); |
| 242 | GR_STATIC_ASSERT(2 == kAdvancedCoherent_BlendEquationSupport); |
| 243 | GR_STATIC_ASSERT(SK_ARRAY_COUNT(kBlendEquationSupportNames) == kLast_BlendEquationSupport + 1); |
| 244 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 245 | writer->appendString("Blend Equation Support", |
| 246 | kBlendEquationSupportNames[fBlendEquationSupport]); |
| 247 | writer->appendString("Map Buffer Support", map_flags_to_string(fMapBufferFlags).c_str()); |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 248 | |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 249 | SkASSERT(!this->isConfigRenderable(kUnknown_GrPixelConfig)); |
Brian Osman | 0f450ac | 2017-08-09 20:45:52 +0000 | [diff] [blame] | 250 | SkASSERT(!this->isConfigTexturable(kUnknown_GrPixelConfig)); |
Brian Osman | 175af0d | 2017-08-09 14:29:36 -0400 | [diff] [blame] | 251 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 252 | writer->beginArray("configs"); |
| 253 | |
| 254 | for (size_t i = 1; i < kGrPixelConfigCnt; ++i) { |
Brian Osman | 0f450ac | 2017-08-09 20:45:52 +0000 | [diff] [blame] | 255 | GrPixelConfig config = static_cast<GrPixelConfig>(i); |
Brian Osman | 8048822 | 2017-08-10 13:29:30 -0400 | [diff] [blame] | 256 | writer->beginObject(nullptr, false); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 257 | writer->appendString("name", pixel_config_name(config)); |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 258 | writer->appendS32("max sample count", this->maxRenderTargetSampleCount(config)); |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 259 | writer->appendBool("texturable", this->isConfigTexturable(config)); |
| 260 | writer->endObject(); |
Brian Osman | 0f450ac | 2017-08-09 20:45:52 +0000 | [diff] [blame] | 261 | } |
Brian Osman | 175af0d | 2017-08-09 14:29:36 -0400 | [diff] [blame] | 262 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 263 | writer->endArray(); |
| 264 | |
| 265 | this->onDumpJSON(writer); |
| 266 | |
| 267 | writer->appendName("shaderCaps"); |
| 268 | this->shaderCaps()->dumpJSON(writer); |
| 269 | |
| 270 | writer->endObject(); |
bsalomon | dc47ff7 | 2015-05-26 12:16:59 -0700 | [diff] [blame] | 271 | } |
Kevin Lubick | f4def34 | 2018-10-04 12:52:50 -0400 | [diff] [blame] | 272 | #else |
| 273 | void GrCaps::dumpJSON(SkJSONWriter* writer) const { } |
| 274 | #endif |
Greg Daniel | f5d8758 | 2017-12-18 14:48:15 -0500 | [diff] [blame] | 275 | |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 276 | bool GrCaps::surfaceSupportsWritePixels(const GrSurface* surface) const { |
| 277 | return surface->readOnly() ? false : this->onSurfaceSupportsWritePixels(surface); |
| 278 | } |
| 279 | |
Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 280 | bool GrCaps::transferFromBufferRequirements(GrColorType bufferColorType, int width, |
| 281 | size_t* rowBytes, size_t* offsetAlignment) const { |
| 282 | if (!this->transferBufferSupport()) { |
| 283 | return false; |
| 284 | } |
| 285 | return this->onTransferFromBufferRequirements(bufferColorType, width, rowBytes, |
| 286 | offsetAlignment); |
| 287 | } |
| 288 | |
Brian Salomon | c67c31c | 2018-12-06 10:00:03 -0500 | [diff] [blame] | 289 | bool GrCaps::canCopySurface(const GrSurfaceProxy* dst, const GrSurfaceProxy* src, |
| 290 | const SkIRect& srcRect, const SkIPoint& dstPoint) const { |
| 291 | return dst->readOnly() ? false : this->onCanCopySurface(dst, src, srcRect, dstPoint); |
| 292 | } |
| 293 | |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 294 | bool GrCaps::validateSurfaceDesc(const GrSurfaceDesc& desc, GrMipMapped mipped) const { |
| 295 | if (!this->isConfigTexturable(desc.fConfig)) { |
| 296 | return false; |
| 297 | } |
| 298 | |
Brian Salomon | 5711133 | 2018-02-05 15:55:54 -0500 | [diff] [blame] | 299 | if (GrMipMapped::kYes == mipped && !this->mipMapSupport()) { |
| 300 | return false; |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | if (desc.fWidth < 1 || desc.fHeight < 1) { |
| 304 | return false; |
| 305 | } |
| 306 | |
| 307 | if (SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag)) { |
| 308 | if (0 == this->getRenderTargetSampleCount(desc.fSampleCnt, desc.fConfig)) { |
| 309 | return false; |
| 310 | } |
| 311 | int maxRTSize = this->maxRenderTargetSize(); |
| 312 | if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) { |
| 313 | return false; |
| 314 | } |
| 315 | } else { |
| 316 | // We currently do not support multisampled textures |
| 317 | if (desc.fSampleCnt > 1) { |
| 318 | return false; |
| 319 | } |
| 320 | int maxSize = this->maxTextureSize(); |
| 321 | if (desc.fWidth > maxSize || desc.fHeight > maxSize) { |
| 322 | return false; |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | return true; |
| 327 | } |
Timothy Liang | 036fdfe | 2018-06-28 15:50:36 -0400 | [diff] [blame] | 328 | |
Greg Daniel | 4065d45 | 2018-11-16 15:43:41 -0500 | [diff] [blame] | 329 | GrBackendFormat GrCaps::getBackendFormatFromColorType(SkColorType ct) const { |
| 330 | return this->getBackendFormatFromGrColorType(SkColorTypeToGrColorType(ct), GrSRGBEncoded::kNo); |
| 331 | } |
Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 332 | |
| 333 | bool GrCaps::onTransferFromBufferRequirements(GrColorType bufferColorType, int width, |
| 334 | size_t* rowBytes, size_t* offsetAlignment) const { |
| 335 | // TODO(bsalomon): Provide backend-specific overrides of this the return the true requirements. |
| 336 | // Currently assuming tight row bytes rounded up to a multiple of 4 and 4 byte offset alignment. |
| 337 | *rowBytes = GrSizeAlignUp(GrColorTypeBytesPerPixel(bufferColorType) * width, 4); |
| 338 | *offsetAlignment = 4; |
| 339 | return true; |
| 340 | } |