summaryrefslogtreecommitdiff
path: root/testdata/fragment01.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-06 14:21:24 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-06 14:21:24 +0200
commitdea5e2c619c55ca7e7e897edb9898d9b5105fc92 (patch)
tree79f67084d0f669558f7a6f3d2352264ad6dbf595 /testdata/fragment01.out
parentf69178d9e65103c8d1ba2ba47c9fb9f834780621 (diff)
tweak hnf handling
Diffstat (limited to 'testdata/fragment01.out')
-rw-r--r--testdata/fragment01.out5
1 files changed, 1 insertions, 4 deletions
diff --git a/testdata/fragment01.out b/testdata/fragment01.out
index f3e048fe..059ae787 100644
--- a/testdata/fragment01.out
+++ b/testdata/fragment01.out
@@ -37,12 +37,9 @@ Pipeline
37 return texture(s,uv); 37 return texture(s,uv);
38 } 38 }
39 out vec4 f0; 39 out vec4 f0;
40 vec4 rgb(float z0,float z1,float z2) {
41 return vec4 (z0,z1,z2,1.0);
42 }
43 vec4 blue; 40 vec4 blue;
44 void main() { 41 void main() {
45 blue = rgb (0.0,0.0,1.0); 42 blue = vec4 (0.0,0.0,1.0,1.0);
46 f0 = blue; 43 f0 = blue;
47 } 44 }
48 """ 45 """