summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/hlsl.void.frag
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/hlsl.void.frag')
-rw-r--r--chromium/third_party/glslang/src/Test/hlsl.void.frag8
1 files changed, 8 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/hlsl.void.frag b/chromium/third_party/glslang/src/Test/hlsl.void.frag
new file mode 100644
index 00000000000..9bf06b72652
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/hlsl.void.frag
@@ -0,0 +1,8 @@
+void foo1() {}
+void foo2(void) {}
+
+float4 PixelShaderFunction(float4 input) : COLOR0
+{
+ foo1();
+ foo2();
+} \ No newline at end of file