summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/baseResults/preprocessor.simple.vert.out
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/baseResults/preprocessor.simple.vert.out')
-rw-r--r--chromium/third_party/glslang/src/Test/baseResults/preprocessor.simple.vert.out23
1 files changed, 23 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/baseResults/preprocessor.simple.vert.out b/chromium/third_party/glslang/src/Test/baseResults/preprocessor.simple.vert.out
new file mode 100644
index 00000000000..8737bc81cfd
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/baseResults/preprocessor.simple.vert.out
@@ -0,0 +1,23 @@
+#version 310 es
+
+
+
+
+
+
+
+
+
+
+
+
+ float fn(float x){ return x + 4.0;}
+
+int main(){
+ gl_Position = vec4(1);
+ gl_Position = clamp(1, 2, 3);
+ gl_Position = vec4(1);
+ gl_Position = vec4(1, 2);
+ gl_Position = vec4(fn(3));
+}
+