summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/hlsl.max.frag
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/hlsl.max.frag')
-rw-r--r--chromium/third_party/glslang/src/Test/hlsl.max.frag4
1 files changed, 4 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/hlsl.max.frag b/chromium/third_party/glslang/src/Test/hlsl.max.frag
new file mode 100644
index 00000000000..6d1ea0b1291
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/hlsl.max.frag
@@ -0,0 +1,4 @@
+float4 PixelShaderFunction(float4 input1, float4 input2) : COLOR0
+{
+ return max(input1, input2);
+}