John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2021 Google LLC |
| 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 "gm/gm.h" |
| 9 | #include "include/core/SkBitmap.h" |
| 10 | #include "include/core/SkCanvas.h" |
| 11 | #include "include/core/SkData.h" |
| 12 | #include "include/core/SkFont.h" |
| 13 | #include "include/core/SkPaint.h" |
| 14 | #include "include/core/SkSize.h" |
| 15 | #include "include/core/SkString.h" |
| 16 | #include "include/core/SkSurface.h" |
| 17 | #include "include/effects/SkGradientShader.h" |
| 18 | #include "include/effects/SkImageFilters.h" |
| 19 | #include "include/effects/SkRuntimeEffect.h" |
Ethan Nicholas | daed259 | 2021-03-04 14:30:25 -0500 | [diff] [blame] | 20 | #include "include/private/SkSLDefines.h" // for kDefaultInlineThreshold |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 21 | #include "include/utils/SkRandom.h" |
Brian Osman | e9ab391 | 2021-07-02 10:17:45 -0400 | [diff] [blame] | 22 | #include "src/core/SkRuntimeEffectPriv.h" |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 23 | #include "src/gpu/GrCaps.h" |
| 24 | #include "src/gpu/GrDirectContextPriv.h" |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 25 | #include "tests/Test.h" |
| 26 | #include "tools/Resources.h" |
| 27 | #include "tools/ToolUtils.h" |
| 28 | |
| 29 | static const SkRect kRect = SkRect::MakeWH(1, 1); |
| 30 | |
John Stiles | b41d5bb | 2021-01-26 16:28:12 -0500 | [diff] [blame] | 31 | template <typename T> |
| 32 | static void set_uniform(SkRuntimeShaderBuilder* builder, const char* name, const T& value) { |
| 33 | SkRuntimeShaderBuilder::BuilderUniform uniform = builder->uniform(name); |
| 34 | if (uniform.fVar) { |
| 35 | uniform = value; |
| 36 | } |
| 37 | } |
| 38 | |
John Stiles | d80f966 | 2021-02-03 11:42:32 -0500 | [diff] [blame] | 39 | static void test_one_permutation(skiatest::Reporter* r, |
| 40 | SkSurface* surface, |
| 41 | const char* testFile, |
| 42 | const char* permutationSuffix, |
| 43 | const SkRuntimeEffect::Options& options) { |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 44 | SkString resourcePath = SkStringPrintf("sksl/%s", testFile); |
| 45 | sk_sp<SkData> shaderData = GetResourceAsData(resourcePath.c_str()); |
| 46 | if (!shaderData) { |
John Stiles | d80f966 | 2021-02-03 11:42:32 -0500 | [diff] [blame] | 47 | ERRORF(r, "%s%s: Unable to load file", testFile, permutationSuffix); |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 48 | return; |
| 49 | } |
| 50 | |
| 51 | SkString shaderString{reinterpret_cast<const char*>(shaderData->bytes()), shaderData->size()}; |
Brian Osman | 169c890 | 2021-04-21 14:27:08 -0400 | [diff] [blame] | 52 | SkRuntimeEffect::Result result = SkRuntimeEffect::MakeForShader(shaderString, options); |
John Stiles | d80f966 | 2021-02-03 11:42:32 -0500 | [diff] [blame] | 53 | if (!result.effect) { |
| 54 | ERRORF(r, "%s%s: %s", testFile, permutationSuffix, result.errorText.c_str()); |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 55 | return; |
| 56 | } |
| 57 | |
John Stiles | d80f966 | 2021-02-03 11:42:32 -0500 | [diff] [blame] | 58 | SkRuntimeShaderBuilder builder(result.effect); |
John Stiles | e1658b5 | 2021-01-29 11:44:13 -0500 | [diff] [blame] | 59 | set_uniform(&builder, "colorBlack", SkV4{0, 0, 0, 1}); |
| 60 | set_uniform(&builder, "colorRed", SkV4{1, 0, 0, 1}); |
| 61 | set_uniform(&builder, "colorGreen", SkV4{0, 1, 0, 1}); |
| 62 | set_uniform(&builder, "colorBlue", SkV4{0, 0, 1, 1}); |
| 63 | set_uniform(&builder, "colorWhite", SkV4{1, 1, 1, 1}); |
| 64 | set_uniform(&builder, "testInputs", SkV4{-1.25, 0, 0.75, 2.25}); |
John Stiles | 01cdf01 | 2021-02-10 09:53:41 -0500 | [diff] [blame] | 65 | set_uniform(&builder, "testMatrix2x2", std::array<float,4>{1, 2, |
| 66 | 3, 4}); |
| 67 | set_uniform(&builder, "testMatrix3x3", std::array<float,9>{1, 2, 3, |
| 68 | 4, 5, 6, |
| 69 | 7, 8, 9}); |
John Stiles | e1658b5 | 2021-01-29 11:44:13 -0500 | [diff] [blame] | 70 | set_uniform(&builder, "unknownInput", 1.0f); |
John Stiles | a0e407d | 2021-02-10 12:21:51 -0500 | [diff] [blame] | 71 | set_uniform(&builder, "testMatrix2x2", std::array<float,4>{1, 2, |
| 72 | 3, 4}); |
| 73 | set_uniform(&builder, "testMatrix3x3", std::array<float,9>{1, 2, 3, |
| 74 | 4, 5, 6, |
| 75 | 7, 8, 9}); |
John Stiles | b41d5bb | 2021-01-26 16:28:12 -0500 | [diff] [blame] | 76 | |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 77 | sk_sp<SkShader> shader = builder.makeShader(/*localMatrix=*/nullptr, /*isOpaque=*/true); |
| 78 | if (!shader) { |
John Stiles | d80f966 | 2021-02-03 11:42:32 -0500 | [diff] [blame] | 79 | ERRORF(r, "%s%s: Unable to build shader", testFile, permutationSuffix); |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 80 | return; |
| 81 | } |
| 82 | |
| 83 | SkPaint paintShader; |
| 84 | paintShader.setShader(shader); |
| 85 | surface->getCanvas()->drawRect(kRect, paintShader); |
| 86 | |
| 87 | SkBitmap bitmap; |
| 88 | REPORTER_ASSERT(r, bitmap.tryAllocPixels(surface->imageInfo())); |
| 89 | REPORTER_ASSERT(r, surface->readPixels(bitmap.info(), bitmap.getPixels(), bitmap.rowBytes(), |
| 90 | /*srcX=*/0, /*srcY=*/0)); |
| 91 | |
| 92 | SkColor color = bitmap.getColor(0, 0); |
| 93 | REPORTER_ASSERT(r, color == SkColorSetARGB(0xFF, 0x00, 0xFF, 0x00), |
| 94 | "Expected: solid green. Actual: A=%02X R=%02X G=%02X B=%02X.", |
| 95 | SkColorGetA(color), SkColorGetR(color), SkColorGetG(color), SkColorGetB(color)); |
| 96 | } |
| 97 | |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 98 | static void test_permutations(skiatest::Reporter* r, |
| 99 | SkSurface* surface, |
| 100 | const char* testFile, |
| 101 | bool worksInES2) { |
Brian Osman | e9ab391 | 2021-07-02 10:17:45 -0400 | [diff] [blame] | 102 | SkRuntimeEffect::Options options = |
| 103 | worksInES2 ? SkRuntimeEffect::Options{} : SkRuntimeEffectPriv::ES3Options(); |
John Stiles | 9d26af9 | 2021-03-23 09:25:33 -0400 | [diff] [blame] | 104 | options.forceNoInline = false; |
John Stiles | d80f966 | 2021-02-03 11:42:32 -0500 | [diff] [blame] | 105 | test_one_permutation(r, surface, testFile, "", options); |
John Stiles | 9d26af9 | 2021-03-23 09:25:33 -0400 | [diff] [blame] | 106 | |
| 107 | options.forceNoInline = true; |
| 108 | test_one_permutation(r, surface, testFile, " (NoInline)", options); |
John Stiles | d80f966 | 2021-02-03 11:42:32 -0500 | [diff] [blame] | 109 | } |
| 110 | |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 111 | static void test_cpu(skiatest::Reporter* r, const char* testFile) { |
| 112 | const SkImageInfo info = SkImageInfo::MakeN32Premul(kRect.width(), kRect.height()); |
| 113 | sk_sp<SkSurface> surface(SkSurface::MakeRaster(info)); |
| 114 | |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 115 | test_permutations(r, surface.get(), testFile, /*worksInES2=*/true); |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | static void test_gpu(skiatest::Reporter* r, GrDirectContext* ctx, const char* testFile) { |
| 119 | const SkImageInfo info = SkImageInfo::MakeN32Premul(kRect.width(), kRect.height()); |
| 120 | sk_sp<SkSurface> surface(SkSurface::MakeRenderTarget(ctx, SkBudgeted::kNo, info)); |
| 121 | |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 122 | test_permutations(r, surface.get(), testFile, /*worksInES2=*/true); |
| 123 | } |
| 124 | |
| 125 | static void test_es3(skiatest::Reporter* r, GrDirectContext* ctx, const char* testFile) { |
John Stiles | aecf8d5 | 2021-05-14 12:15:01 -0400 | [diff] [blame] | 126 | // We don't have an ES2 caps bit, so we check the caps bits for features that ES2 explicitly |
| 127 | // doesn't support. Our ES2 bots should return false for these. |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 128 | if (!ctx->priv().caps()->shaderCaps()->shaderDerivativeSupport() || |
John Stiles | aecf8d5 | 2021-05-14 12:15:01 -0400 | [diff] [blame] | 129 | !ctx->priv().caps()->shaderCaps()->integerSupport() || |
| 130 | !ctx->priv().caps()->shaderCaps()->nonsquareMatrixSupport()) { |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 131 | return; |
| 132 | } |
| 133 | // ES3-only tests never run on the CPU, because SkVM lacks support for many non-ES2 features. |
| 134 | const SkImageInfo info = SkImageInfo::MakeN32Premul(kRect.width(), kRect.height()); |
| 135 | sk_sp<SkSurface> surface(SkSurface::MakeRenderTarget(ctx, SkBudgeted::kNo, info)); |
| 136 | |
| 137 | test_permutations(r, surface.get(), testFile, /*worksInES2=*/false); |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 138 | } |
| 139 | |
John Stiles | b441850 | 2021-02-04 10:57:08 -0500 | [diff] [blame] | 140 | #define SKSL_TEST_CPU(name, path) \ |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 141 | DEF_TEST(name ## _CPU, r) { \ |
| 142 | test_cpu(r, path); \ |
John Stiles | b441850 | 2021-02-04 10:57:08 -0500 | [diff] [blame] | 143 | } |
| 144 | #define SKSL_TEST_GPU(name, path) \ |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 145 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(name ## _GPU, r, ctxInfo) { \ |
| 146 | test_gpu(r, ctxInfo.directContext(), path); \ |
| 147 | } |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 148 | #define SKSL_TEST_ES3(name, path) \ |
| 149 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(name ## _GPU, r, ctxInfo) { \ |
| 150 | test_es3(r, ctxInfo.directContext(), path); \ |
| 151 | } |
John Stiles | b441850 | 2021-02-04 10:57:08 -0500 | [diff] [blame] | 152 | #define SKSL_TEST(name, path) SKSL_TEST_CPU(name, path) SKSL_TEST_GPU(name, path) |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 153 | |
John Stiles | 34c098d | 2021-02-09 10:38:59 -0500 | [diff] [blame] | 154 | SKSL_TEST(SkSLAssignmentOps, "folding/AssignmentOps.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 155 | SKSL_TEST(SkSLBoolFolding, "folding/BoolFolding.sksl") |
John Stiles | 27193d4 | 2021-05-07 11:16:26 -0400 | [diff] [blame] | 156 | SKSL_TEST(SkSLCastFolding, "folding/CastFolding.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 157 | SKSL_TEST(SkSLIntFoldingES2, "folding/IntFoldingES2.sksl") |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 158 | SKSL_TEST_ES3(SkSLIntFoldingES3, "folding/IntFoldingES3.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 159 | SKSL_TEST(SkSLFloatFolding, "folding/FloatFolding.sksl") |
Brian Osman | 169c890 | 2021-04-21 14:27:08 -0400 | [diff] [blame] | 160 | // skbug.com/11919: Fails on Nexus5/7, and Intel GPUs |
| 161 | SKSL_TEST_CPU(SkSLMatrixFoldingES2, "folding/MatrixFoldingES2.sksl") |
Brian Osman | 8e756f3 | 2021-02-10 10:19:27 -0500 | [diff] [blame] | 162 | SKSL_TEST(SkSLSelfAssignment, "folding/SelfAssignment.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 163 | SKSL_TEST(SkSLShortCircuitBoolFolding, "folding/ShortCircuitBoolFolding.sksl") |
John Stiles | fb7d378 | 2021-04-29 11:14:38 -0400 | [diff] [blame] | 164 | SKSL_TEST(SkSLSwizzleFolding, "folding/SwizzleFolding.sksl") |
John Stiles | 03467a5 | 2021-03-04 15:19:48 +0000 | [diff] [blame] | 165 | SKSL_TEST(SkSLVectorScalarFolding, "folding/VectorScalarFolding.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 166 | SKSL_TEST(SkSLVectorVectorFolding, "folding/VectorVectorFolding.sksl") |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 167 | |
John Stiles | d2c5a80 | 2021-05-19 21:42:57 -0400 | [diff] [blame] | 168 | SKSL_TEST_ES3(SkSLDoWhileBodyMustBeInlinedIntoAScope, |
| 169 | "inliner/DoWhileBodyMustBeInlinedIntoAScope.sksl") |
| 170 | SKSL_TEST_ES3(SkSLDoWhileTestCannotBeInlined, "inliner/DoWhileTestCannotBeInlined.sksl") |
John Stiles | 0c9d888 | 2021-03-25 17:04:36 -0400 | [diff] [blame] | 171 | SKSL_TEST(SkSLForBodyMustBeInlinedIntoAScope, "inliner/ForBodyMustBeInlinedIntoAScope.sksl") |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 172 | SKSL_TEST_ES3(SkSLForInitializerExpressionsCanBeInlined, |
| 173 | "inliner/ForInitializerExpressionsCanBeInlined.sksl") |
John Stiles | 0c9d888 | 2021-03-25 17:04:36 -0400 | [diff] [blame] | 174 | SKSL_TEST(SkSLForWithoutReturnInsideCanBeInlined, "inliner/ForWithoutReturnInsideCanBeInlined.sksl") |
| 175 | SKSL_TEST(SkSLForWithReturnInsideCannotBeInlined, "inliner/ForWithReturnInsideCannotBeInlined.sksl") |
| 176 | SKSL_TEST(SkSLIfBodyMustBeInlinedIntoAScope, "inliner/IfBodyMustBeInlinedIntoAScope.sksl") |
| 177 | SKSL_TEST(SkSLIfElseBodyMustBeInlinedIntoAScope, "inliner/IfElseBodyMustBeInlinedIntoAScope.sksl") |
| 178 | SKSL_TEST(SkSLIfElseChainWithReturnsCanBeInlined, "inliner/IfElseChainWithReturnsCanBeInlined.sksl") |
| 179 | SKSL_TEST(SkSLIfTestCanBeInlined, "inliner/IfTestCanBeInlined.sksl") |
| 180 | SKSL_TEST(SkSLIfWithReturnsCanBeInlined, "inliner/IfWithReturnsCanBeInlined.sksl") |
| 181 | SKSL_TEST(SkSLInlineKeywordOverridesThreshold, "inliner/InlineKeywordOverridesThreshold.sksl") |
| 182 | SKSL_TEST(SkSLInlinerAvoidsVariableNameOverlap, "inliner/InlinerAvoidsVariableNameOverlap.sksl") |
| 183 | SKSL_TEST(SkSLInlinerElidesTempVarForReturnsInsideBlock, |
| 184 | "inliner/InlinerElidesTempVarForReturnsInsideBlock.sksl") |
| 185 | SKSL_TEST(SkSLInlinerUsesTempVarForMultipleReturns, |
| 186 | "inliner/InlinerUsesTempVarForMultipleReturns.sksl") |
| 187 | SKSL_TEST(SkSLInlinerUsesTempVarForReturnsInsideBlockWithVar, |
| 188 | "inliner/InlinerUsesTempVarForReturnsInsideBlockWithVar.sksl") |
| 189 | SKSL_TEST(SkSLInlineThreshold, "inliner/InlineThreshold.sksl") |
Brian Osman | 169c890 | 2021-04-21 14:27:08 -0400 | [diff] [blame] | 190 | // skbug.com/11919: Fails on Adreno + Vulkan |
| 191 | SKSL_TEST_CPU(SkSLInlineWithInoutArgument, "inliner/InlineWithInoutArgument.sksl") |
John Stiles | 0c9d888 | 2021-03-25 17:04:36 -0400 | [diff] [blame] | 192 | SKSL_TEST(SkSLInlineWithModifiedArgument, "inliner/InlineWithModifiedArgument.sksl") |
| 193 | SKSL_TEST(SkSLInlineWithNestedBigCalls, "inliner/InlineWithNestedBigCalls.sksl") |
| 194 | SKSL_TEST(SkSLInlineWithUnmodifiedArgument, "inliner/InlineWithUnmodifiedArgument.sksl") |
| 195 | SKSL_TEST(SkSLInlineWithUnnecessaryBlocks, "inliner/InlineWithUnnecessaryBlocks.sksl") |
| 196 | SKSL_TEST(SkSLNoInline, "inliner/NoInline.sksl") |
| 197 | SKSL_TEST(SkSLShortCircuitEvaluationsCannotInlineRightHandSide, |
| 198 | "inliner/ShortCircuitEvaluationsCannotInlineRightHandSide.sksl") |
John Stiles | 325c808 | 2021-05-17 14:49:05 -0400 | [diff] [blame] | 199 | SKSL_TEST_ES3(SkSLStaticSwitchInline, "inliner/StaticSwitch.sksl") |
John Stiles | 0c9d888 | 2021-03-25 17:04:36 -0400 | [diff] [blame] | 200 | SKSL_TEST(SkSLStructsCanBeInlinedSafely, "inliner/StructsCanBeInlinedSafely.sksl") |
| 201 | SKSL_TEST(SkSLSwizzleCanBeInlinedDirectly, "inliner/SwizzleCanBeInlinedDirectly.sksl") |
| 202 | SKSL_TEST(SkSLTernaryResultsCannotBeInlined, "inliner/TernaryResultsCannotBeInlined.sksl") |
| 203 | SKSL_TEST(SkSLTernaryTestCanBeInlined, "inliner/TernaryTestCanBeInlined.sksl") |
| 204 | SKSL_TEST(SkSLTrivialArgumentsInlineDirectly, "inliner/TrivialArgumentsInlineDirectly.sksl") |
John Stiles | 65d7ab2 | 2021-04-28 15:14:09 -0400 | [diff] [blame] | 205 | SKSL_TEST_ES3(SkSLWhileBodyMustBeInlinedIntoAScope, |
| 206 | "inliner/WhileBodyMustBeInlinedIntoAScope.sksl") |
| 207 | SKSL_TEST_ES3(SkSLWhileTestCannotBeInlined, "inliner/WhileTestCannotBeInlined.sksl") |
John Stiles | 0c9d888 | 2021-03-25 17:04:36 -0400 | [diff] [blame] | 208 | |
John Stiles | bff24ab | 2021-03-17 13:20:10 -0400 | [diff] [blame] | 209 | // TODO(skia:11052): SPIR-V does not yet honor `out` param semantics correctly |
| 210 | SKSL_TEST_CPU(SkSLInlinerHonorsGLSLOutParamSemantics, |
John Stiles | 0c9d888 | 2021-03-25 17:04:36 -0400 | [diff] [blame] | 211 | "inliner/InlinerHonorsGLSLOutParamSemantics.sksl") |
John Stiles | bff24ab | 2021-03-17 13:20:10 -0400 | [diff] [blame] | 212 | |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 213 | SKSL_TEST(SkSLIntrinsicAbsFloat, "intrinsics/AbsFloat.sksl") |
| 214 | SKSL_TEST(SkSLIntrinsicCeil, "intrinsics/Ceil.sksl") |
John Stiles | 27724cd | 2021-05-25 14:53:17 -0400 | [diff] [blame] | 215 | // TODO(johnstiles): test broken on Adreno 6xx + Vulkan |
| 216 | //SKSL_TEST(SkSLIntrinsicClampFloat, "intrinsics/ClampFloat.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 217 | SKSL_TEST(SkSLIntrinsicMaxFloat, "intrinsics/MaxFloat.sksl") |
| 218 | SKSL_TEST(SkSLIntrinsicMinFloat, "intrinsics/MinFloat.sksl") |
Brian Osman | 169c890 | 2021-04-21 14:27:08 -0400 | [diff] [blame] | 219 | // skbug.com/11919: Fails on Adreno + Vulkan |
| 220 | SKSL_TEST_CPU(SkSLIntrinsicMixFloat, "intrinsics/MixFloat.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 221 | SKSL_TEST(SkSLIntrinsicSignFloat, "intrinsics/SignFloat.sksl") |
John Stiles | 017ffd7 | 2021-05-25 11:48:30 -0400 | [diff] [blame] | 222 | SKSL_TEST(SkSLIntrinsicStep, "intrinsics/Step.sksl") |
John Stiles | e1658b5 | 2021-01-29 11:44:13 -0500 | [diff] [blame] | 223 | |
John Stiles | 2195f94 | 2021-08-05 10:55:03 -0400 | [diff] [blame] | 224 | SKSL_TEST_ES3(SkSLArrayNarrowingConversions, "runtime/ArrayNarrowingConversions.rts") |
| 225 | |
John Stiles | 3934647 | 2021-04-29 14:39:35 -0400 | [diff] [blame] | 226 | SKSL_TEST_ES3(SkSLArrayComparison, "shared/ArrayComparison.sksl") |
John Stiles | c1f6411 | 2021-05-17 09:59:02 -0400 | [diff] [blame] | 227 | SKSL_TEST_ES3(SkSLArrayConstructors, "shared/ArrayConstructors.sksl") |
John Stiles | 2648716 | 2021-08-10 16:03:44 -0400 | [diff] [blame] | 228 | SKSL_TEST_ES3(SkSLArrayCast, "shared/ArrayCast.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 229 | SKSL_TEST(SkSLArrayTypes, "shared/ArrayTypes.sksl") |
| 230 | SKSL_TEST(SkSLAssignment, "shared/Assignment.sksl") |
| 231 | SKSL_TEST(SkSLCastsRoundTowardZero, "shared/CastsRoundTowardZero.sksl") |
| 232 | SKSL_TEST(SkSLCommaMixedTypes, "shared/CommaMixedTypes.sksl") |
John Stiles | 3150839 | 2021-03-17 16:59:07 -0400 | [diff] [blame] | 233 | // This test causes the Adreno 330 driver to crash, and does not pass on Quadro P400 in wasm. |
| 234 | // The CPU test confirms that we can get it right, even if not all drivers do. |
| 235 | SKSL_TEST_CPU(SkSLCommaSideEffects, "shared/CommaSideEffects.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 236 | SKSL_TEST(SkSLConstantIf, "shared/ConstantIf.sksl") |
John Stiles | 82491c5 | 2021-05-14 07:55:45 -0400 | [diff] [blame] | 237 | SKSL_TEST_ES3(SkSLConstArray, "shared/ConstArray.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 238 | SKSL_TEST(SkSLConstVariableComparison, "shared/ConstVariableComparison.sksl") |
| 239 | SKSL_TEST(SkSLDeadIfStatement, "shared/DeadIfStatement.sksl") |
John Stiles | f2b08cc | 2021-05-17 14:46:05 -0400 | [diff] [blame] | 240 | SKSL_TEST(SkSLDeadReturn, "shared/DeadReturn.sksl") |
John Stiles | b82e931 | 2021-05-20 15:30:22 -0400 | [diff] [blame] | 241 | // TODO(skia:12012): some Radeons crash when compiling this code; disable them |
| 242 | //SKSL_TEST_ES3(SkSLDeadReturnES3, "shared/DeadReturnES3.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 243 | SKSL_TEST(SkSLDeadStripFunctions, "shared/DeadStripFunctions.sksl") |
| 244 | SKSL_TEST(SkSLDependentInitializers, "shared/DependentInitializers.sksl") |
John Stiles | d2c5a80 | 2021-05-19 21:42:57 -0400 | [diff] [blame] | 245 | SKSL_TEST_ES3(SkSLDoWhileControlFlow, "shared/DoWhileControlFlow.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 246 | SKSL_TEST(SkSLEmptyBlocksES2, "shared/EmptyBlocksES2.sksl") |
| 247 | SKSL_TEST(SkSLForLoopControlFlow, "shared/ForLoopControlFlow.sksl") |
| 248 | SKSL_TEST(SkSLFunctionArgTypeMatch, "shared/FunctionArgTypeMatch.sksl") |
| 249 | SKSL_TEST(SkSLFunctionReturnTypeMatch, "shared/FunctionReturnTypeMatch.sksl") |
| 250 | SKSL_TEST(SkSLFunctions, "shared/Functions.sksl") |
Brian Osman | 7da0657 | 2021-07-21 15:19:34 -0400 | [diff] [blame] | 251 | SKSL_TEST(SkSLFunctionPrototype, "shared/FunctionPrototype.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 252 | SKSL_TEST(SkSLGeometricIntrinsics, "shared/GeometricIntrinsics.sksl") |
| 253 | SKSL_TEST(SkSLHelloWorld, "shared/HelloWorld.sksl") |
| 254 | SKSL_TEST(SkSLHex, "shared/Hex.sksl") |
| 255 | SKSL_TEST(SkSLMatrices, "shared/Matrices.sksl") |
John Stiles | ab3e639 | 2021-05-14 17:53:03 -0400 | [diff] [blame] | 256 | SKSL_TEST_ES3(SkSLMatricesNonsquare, "shared/MatricesNonsquare.sksl") |
John Stiles | a0e407d | 2021-02-10 12:21:51 -0500 | [diff] [blame] | 257 | SKSL_TEST(SkSLMatrixEquality, "shared/MatrixEquality.sksl") |
John Stiles | 191b4e2 | 2021-05-14 20:03:01 -0400 | [diff] [blame] | 258 | SKSL_TEST(SkSLMatrixScalarSplat, "shared/MatrixScalarSplat.sksl") |
John Stiles | 6de2e1d | 2021-07-09 12:41:55 -0400 | [diff] [blame] | 259 | SKSL_TEST(SkSLMatrixToVectorCast, "shared/MatrixToVectorCast.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 260 | SKSL_TEST(SkSLMultipleAssignments, "shared/MultipleAssignments.sksl") |
| 261 | SKSL_TEST(SkSLNegatedVectorLiteral, "shared/NegatedVectorLiteral.sksl") |
| 262 | SKSL_TEST(SkSLNumberCasts, "shared/NumberCasts.sksl") |
| 263 | SKSL_TEST(SkSLOperatorsES2, "shared/OperatorsES2.sksl") |
John Stiles | c1f6411 | 2021-05-17 09:59:02 -0400 | [diff] [blame] | 264 | SKSL_TEST_ES3(SkSLOperatorsES3, "shared/OperatorsES3.sksl") |
John Stiles | 9ae6ea0 | 2021-08-05 11:49:05 -0400 | [diff] [blame] | 265 | SKSL_TEST(SkSLOssfuzz36852, "shared/Ossfuzz36852.sksl") |
Brian Osman | 169c890 | 2021-04-21 14:27:08 -0400 | [diff] [blame] | 266 | |
| 267 | // skbug.com/11919: Fails on Adreno + Vulkan |
| 268 | SKSL_TEST_CPU(SkSLOutParams, "shared/OutParams.sksl") |
| 269 | SKSL_TEST_CPU(SkSLOutParamsNoInline, "shared/OutParamsNoInline.sksl") |
| 270 | SKSL_TEST_CPU(SkSLOutParamsTricky, "shared/OutParamsTricky.sksl") |
| 271 | |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 272 | SKSL_TEST(SkSLResizeMatrix, "shared/ResizeMatrix.sksl") |
John Stiles | b3dcbb1 | 2021-03-04 16:00:20 -0500 | [diff] [blame] | 273 | SKSL_TEST(SkSLReturnsValueOnEveryPathES2, "shared/ReturnsValueOnEveryPathES2.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 274 | SKSL_TEST(SkSLScalarConversionConstructorsES2, "shared/ScalarConversionConstructorsES2.sksl") |
John Stiles | 325c808 | 2021-05-17 14:49:05 -0400 | [diff] [blame] | 275 | SKSL_TEST_ES3(SkSLScalarConversionConstructorsES3, "shared/ScalarConversionConstructorsES3.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 276 | SKSL_TEST(SkSLStackingVectorCasts, "shared/StackingVectorCasts.sksl") |
| 277 | SKSL_TEST(SkSLStaticIf, "shared/StaticIf.sksl") |
John Stiles | 325c808 | 2021-05-17 14:49:05 -0400 | [diff] [blame] | 278 | SKSL_TEST_ES3(SkSLStaticSwitch, "shared/StaticSwitch.sksl") |
John Stiles | 3934647 | 2021-04-29 14:39:35 -0400 | [diff] [blame] | 279 | SKSL_TEST(SkSLStructsInFunctions, "shared/StructsInFunctions.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 280 | SKSL_TEST(SkSLSwizzleBoolConstants, "shared/SwizzleBoolConstants.sksl") |
John Stiles | c2c1b0c | 2021-02-05 16:24:03 -0500 | [diff] [blame] | 281 | SKSL_TEST(SkSLSwizzleByConstantIndex, "shared/SwizzleByConstantIndex.sksl") |
| 282 | SKSL_TEST(SkSLSwizzleConstants, "shared/SwizzleConstants.sksl") |
| 283 | SKSL_TEST(SkSLSwizzleLTRB, "shared/SwizzleLTRB.sksl") |
| 284 | SKSL_TEST(SkSLSwizzleOpt, "shared/SwizzleOpt.sksl") |
| 285 | SKSL_TEST(SkSLSwizzleScalar, "shared/SwizzleScalar.sksl") |
John Stiles | 010c0ec | 2021-07-12 15:05:54 -0400 | [diff] [blame] | 286 | SKSL_TEST(SkSLSwizzleScalarBool, "shared/SwizzleScalarBool.sksl") |
John Stiles | 7f56b41 | 2021-07-12 14:59:19 -0400 | [diff] [blame] | 287 | SKSL_TEST(SkSLSwizzleScalarInt, "shared/SwizzleScalarInt.sksl") |
John Stiles | ecd7c22 | 2021-02-08 14:20:28 -0500 | [diff] [blame] | 288 | SKSL_TEST(SkSLTernaryAsLValueEntirelyFoldable, "shared/TernaryAsLValueEntirelyFoldable.sksl") |
| 289 | SKSL_TEST(SkSLTernaryAsLValueFoldableTest, "shared/TernaryAsLValueFoldableTest.sksl") |
John Stiles | 28054ad | 2021-03-05 15:22:48 -0500 | [diff] [blame] | 290 | SKSL_TEST(SkSLTernaryExpression, "shared/TernaryExpression.sksl") |
John Stiles | ecd7c22 | 2021-02-08 14:20:28 -0500 | [diff] [blame] | 291 | SKSL_TEST(SkSLUnaryPositiveNegative, "shared/UnaryPositiveNegative.sksl") |
| 292 | SKSL_TEST(SkSLUnusedVariables, "shared/UnusedVariables.sksl") |
| 293 | SKSL_TEST(SkSLVectorConstructors, "shared/VectorConstructors.sksl") |
John Stiles | 5a825da | 2021-07-08 18:20:21 -0400 | [diff] [blame] | 294 | SKSL_TEST(SkSLVectorToMatrixCast, "shared/VectorToMatrixCast.sksl") |
Brian Osman | 169c890 | 2021-04-21 14:27:08 -0400 | [diff] [blame] | 295 | // skbug.com/11919: Fails on Nexus5/7, and Intel GPUs |
| 296 | SKSL_TEST_CPU(SkSLVectorScalarMath, "shared/VectorScalarMath.sksl") |
John Stiles | c1f6411 | 2021-05-17 09:59:02 -0400 | [diff] [blame] | 297 | SKSL_TEST_ES3(SkSLWhileLoopControlFlow, "shared/WhileLoopControlFlow.sksl") |
John Stiles | 7b92897 | 2021-01-27 09:56:04 -0500 | [diff] [blame] | 298 | |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 299 | /* |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 300 | TODO(skia:11209): enable these tests when Runtime Effects have support for ES3 |
| 301 | |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 302 | SKSL_TEST(SkSLMatrixFoldingES3, "folding/MatrixFoldingES3.sksl") |
John Stiles | 7b92897 | 2021-01-27 09:56:04 -0500 | [diff] [blame] | 303 | |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 304 | SKSL_TEST(SkSLIntrinsicAbsInt, "intrinsics/AbsInt.sksl") |
| 305 | SKSL_TEST(SkSLIntrinsicClampInt, "intrinsics/ClampInt.sksl") |
| 306 | SKSL_TEST(SkSLIntrinsicMaxInt, "intrinsics/MaxInt.sksl") |
| 307 | SKSL_TEST(SkSLIntrinsicMinInt, "intrinsics/MinInt.sksl") |
| 308 | SKSL_TEST(SkSLIntrinsicMixBool, "intrinsics/MixBool.sksl") |
| 309 | SKSL_TEST(SkSLIntrinsicSignInt, "intrinsics/SignInt.sksl") |
John Stiles | e1658b5 | 2021-01-29 11:44:13 -0500 | [diff] [blame] | 310 | |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 311 | SKSL_TEST(SkSLDeadLoopVariable, "shared/DeadLoopVariable.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 312 | SKSL_TEST(SkSLEmptyBlocksES3, "shared/EmptyBlocksES3.sksl") |
| 313 | SKSL_TEST(SkSLHexUnsigned, "shared/HexUnsigned.sksl") |
John Stiles | d437478 | 2021-02-05 09:31:21 -0500 | [diff] [blame] | 314 | SKSL_TEST(SkSLResizeMatrixNonsquare, "shared/ResizeMatrixNonsquare.sksl") |
John Stiles | b3dcbb1 | 2021-03-04 16:00:20 -0500 | [diff] [blame] | 315 | SKSL_TEST(SkSLReturnsValueOnEveryPathES3, "shared/ReturnsValueOnEveryPathES3.sksl") |
John Stiles | c2c1b0c | 2021-02-05 16:24:03 -0500 | [diff] [blame] | 316 | SKSL_TEST(SkSLSwizzleByIndex, "shared/SwizzleByIndex.sksl") |
John Stiles | 232dd2b | 2021-01-25 10:57:47 -0500 | [diff] [blame] | 317 | */ |