Commit 778d5279 by Jamie Madill

Fix a stray quote that snuck into GLSLTest.cpp.

This was causing a test failure in TwoElseIfRewriting. BUG=angle:716 Change-Id: I75e21ff586cdef10f0c35985a97fbb7c4783d2fe Reviewed-on: https://chromium-review.googlesource.com/210991Tested-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent 2c976a44
...@@ -186,7 +186,7 @@ TEST_F(GLSLTest, TwoElseIfRewriting) ...@@ -186,7 +186,7 @@ TEST_F(GLSLTest, TwoElseIfRewriting)
"varying float v;\n" "varying float v;\n"
"void main() {\n" "void main() {\n"
" gl_Position = a_position;\n" " gl_Position = a_position;\n"
" if (a_position.x == 0.0`) {\n" " if (a_position.x == 0.0) {\n"
" v = 1.0;\n" " v = 1.0;\n"
" } else if (a_position.x > 0.5) {\n" " } else if (a_position.x > 0.5) {\n"
" v = 0.0;\n" " v = 0.0;\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment