diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/SkSLGLSLTest.cpp | 37 |
1 files changed, 9 insertions, 28 deletions
diff --git a/tests/SkSLGLSLTest.cpp b/tests/SkSLGLSLTest.cpp index ad1fe0d901..b615f67814 100644 --- a/tests/SkSLGLSLTest.cpp +++ b/tests/SkSLGLSLTest.cpp @@ -27,7 +27,15 @@ static void test(skiatest::Reporter* r, const char* src, SkSL::GLCaps caps, cons } static SkSL::GLCaps default_caps() { - return SkSL::GLCaps(); + return { + 400, + SkSL::GLCaps::kGL_Standard, + false, // isCoreProfile + false, // usesPrecisionModifiers; + false, // mustDeclareFragmentShaderOutput + true, // canUseMinAndAbsTogether + false // mustForceNegatedAtanParamToFloat + }; } DEF_TEST(SkSLHelloWorld, r) { @@ -379,30 +387,3 @@ DEF_TEST(SkSLArrayConstructors, r) { "vec2 test2[] = vec2[](vec2(1.0, 2.0), vec2(3.0, 4.0));\n" "mat4 test3[] = mat4[]();\n"); } - -DEF_TEST(SkSLDerivatives, r) { - test(r, - "void main() { float x = dFdx(1); }", - default_caps(), - "#version 400\n" - "void main() {\n" - " float x = dFdx(1.0);\n" - "}\n"); - SkSL::GLCaps caps = default_caps(); - caps.fShaderDerivativeExtensionString = "GL_OES_standard_derivatives"; - test(r, - "void main() { float x = 1; }", - caps, - "#version 400\n" - "void main() {\n" - " float x = 1.0;\n" - "}\n"); - test(r, - "void main() { float x = dFdx(1); }", - caps, - "#version 400\n" - "#extension GL_OES_standard_derivatives : require\n" - "void main() {\n" - " float x = dFdx(1.0);\n" - "}\n"); -} |