summaryrefslogtreecommitdiff
path: root/testdata/simple02.out
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/simple02.out')
-rw-r--r--testdata/simple02.out3
1 files changed, 1 insertions, 2 deletions
diff --git a/testdata/simple02.out b/testdata/simple02.out
index 63f86974..faf41dea 100644
--- a/testdata/simple02.out
+++ b/testdata/simple02.out
@@ -30,9 +30,8 @@ Pipeline
30 uniform mat4 MVP; 30 uniform mat4 MVP;
31 in vec4 vi1; 31 in vec4 vi1;
32 smooth out vec4 vo1; 32 smooth out vec4 vo1;
33 mat4 modelViewProj = MVP;
34 void main() { 33 void main() {
35 gl_Position = (modelViewProj) * (vi1); 34 gl_Position = (MVP) * (vi1);
36 vo1 = vi1; 35 vo1 = vi1;
37 } 36 }
38 """ 37 """