summaryrefslogtreecommitdiff
path: root/testdata/texture01.out
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/texture01.out')
-rw-r--r--testdata/texture01.out5
1 files changed, 4 insertions, 1 deletions
diff --git a/testdata/texture01.out b/testdata/texture01.out
index eea2d8ff..f4e20137 100644
--- a/testdata/texture01.out
+++ b/testdata/texture01.out
@@ -34,8 +34,11 @@ Pipeline
34 in vec4 vi1; 34 in vec4 vi1;
35 in vec2 vi2; 35 in vec2 vi2;
36 smooth out vec2 vo1; 36 smooth out vec2 vo1;
37 vec4 scale(float z0,vec4 z1) {
38 return (z1) * (vec4 (z0,z0,z0,1.0));
39 }
37 void main() { 40 void main() {
38 gl_Position = ((MVP) * (vi1)) * (vec4 (0.5,0.5,0.5,1.0)); 41 gl_Position = scale (0.5,(MVP) * (vi1));
39 vo1 = vi2; 42 vo1 = vi2;
40 } 43 }
41 """ 44 """