aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SkSLGLSLTest.cpp
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-08-17 14:58:40 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-08-17 14:58:48 +0000
commit23f92277b916a4bdf11c320799ac9248af60a62e (patch)
treeeb37926e9e0be489398a5bf9b239a4209a5a39da /tests/SkSLGLSLTest.cpp
parentb0d88eda9096400600828e08755e66642b58ca0b (diff)
Revert "fixed constant vector swizzling"
This reverts commit 8ac36a577f14158c820bbc673f477a7ce20702e5. Reason for revert: Need to revert 88d99c63878c2d3d340120f0321676f72afcb4f0 Original change's description: > fixed constant vector swizzling > > Bug: skia: > Change-Id: I2d205bf7242d2223c4939c3e7897db9aba02c705 > Reviewed-on: https://skia-review.googlesource.com/35640 > Reviewed-by: Ethan Nicholas <ethannicholas@google.com> > Commit-Queue: Ethan Nicholas <ethannicholas@google.com> TBR=bsalomon@google.com,ethannicholas@google.com Change-Id: I0b0ee62b9173beed9513947244e37d5a528f85a3 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: skia: Reviewed-on: https://skia-review.googlesource.com/35704 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'tests/SkSLGLSLTest.cpp')
-rw-r--r--tests/SkSLGLSLTest.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/SkSLGLSLTest.cpp b/tests/SkSLGLSLTest.cpp
index e4088ceee7..73c6dccbde 100644
--- a/tests/SkSLGLSLTest.cpp
+++ b/tests/SkSLGLSLTest.cpp
@@ -1573,17 +1573,4 @@ DEF_TEST(SkSLNumberConversions, r) {
"float f2f = f;\n");
}
-DEF_TEST(SkSLConstantSwizzleComparison, r) {
- test(r,
- "void main() { if (half4(1.0).x == half4(1.0).y) { sk_FragColor = half4(1.0); } }",
- *SkSL::ShaderCapsFactory::Default(),
- "#version 400\n"
- "out vec4 sk_FragColor;\n"
- "void main() {\n"
- " {\n"
- " sk_FragColor = vec4(1.0);\n"
- " }\n"
- "}\n");
-}
-
#endif