summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2017-07-11 13:15:13 -0600
committerBrian Paul <brianp@vmware.com>2017-07-11 16:02:32 -0600
commitb50af79d527c4c946c16eae28e49c30a0ae050fa (patch)
treefc379f4bae013cc1f1fb5735906f55d57a3805b1
parent2ce37e06755fdfe09464e5d00a8c2aed74abe30a (diff)
blit-scaled-linear: whitespace fixes
-rw-r--r--tests/spec/arb_framebuffer_object/blit-scaled-linear.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/spec/arb_framebuffer_object/blit-scaled-linear.cpp b/tests/spec/arb_framebuffer_object/blit-scaled-linear.cpp
index 37ed7c478..5cf6a4906 100644
--- a/tests/spec/arb_framebuffer_object/blit-scaled-linear.cpp
+++ b/tests/spec/arb_framebuffer_object/blit-scaled-linear.cpp
@@ -90,13 +90,13 @@ compile_shader(void)
"\n"
" tex_coord = tex_coord - f;\n"
"\n"
- " c0 = texture2DRect(tex2d, tex_coord.xy + vec2(0, 0));\n"
- " c1 = texture2DRect(tex2d, tex_coord.xy + vec2(1, 0));\n"
- " c2 = texture2DRect(tex2d, tex_coord.xy + vec2(0, 1));\n"
- " c3 = texture2DRect(tex2d, tex_coord.xy + vec2(1, 1));\n"
+ " c0 = texture2DRect(tex2d, tex_coord.xy + vec2(0, 0));\n"
+ " c1 = texture2DRect(tex2d, tex_coord.xy + vec2(1, 0));\n"
+ " c2 = texture2DRect(tex2d, tex_coord.xy + vec2(0, 1));\n"
+ " c3 = texture2DRect(tex2d, tex_coord.xy + vec2(1, 1));\n"
"\n"
- " vec4 color_x1 = mix(c0, c1, f.x);\n"
- " vec4 color_x2 = mix(c2, c3, f.x);\n"
+ " vec4 color_x1 = mix(c0, c1, f.x);\n"
+ " vec4 color_x2 = mix(c2, c3, f.x);\n"
"\n"
" out_color = mix(color_x1, color_x2, f.y);\n"
"}\n";