summaryrefslogtreecommitdiff
path: root/testdata/uniformparam02.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-01 19:13:34 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-01 19:13:34 +0200
commit90e336391673ac1cf9ff582e98e35faf89a8f09d (patch)
tree0b7a14dbfc5734c07c2ae4ed34cb679fecd10d3f /testdata/uniformparam02.out
parent1a7544763729938e7009ead1e375e9bbf413afb0 (diff)
improve pretty print layout & show desugared source code in .out files
Diffstat (limited to 'testdata/uniformparam02.out')
-rw-r--r--testdata/uniformparam02.out6
1 files changed, 2 insertions, 4 deletions
diff --git a/testdata/uniformparam02.out b/testdata/uniformparam02.out
index f1311195..9caaa4ee 100644
--- a/testdata/uniformparam02.out
+++ b/testdata/uniformparam02.out
@@ -22,8 +22,7 @@ Pipeline
22 , vertexShader = 22 , vertexShader =
23 """ 23 """
24 #version 330 core 24 #version 330 core
25 vec4 texture2D(sampler2D s 25 vec4 texture2D(sampler2D s,vec2 uv) {
26 ,vec2 uv) {
27 return texture(s,uv); 26 return texture(s,uv);
28 } 27 }
29 in vec4 vi1; 28 in vec4 vi1;
@@ -37,8 +36,7 @@ Pipeline
37 , fragmentShader = 36 , fragmentShader =
38 """ 37 """
39 #version 330 core 38 #version 330 core
40 vec4 texture2D(sampler2D s 39 vec4 texture2D(sampler2D s,vec2 uv) {
41 ,vec2 uv) {
42 return texture(s,uv); 40 return texture(s,uv);
43 } 41 }
44 flat in vec4 vo1; 42 flat in vec4 vo1;