summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/glslang/Test/hlsl.cast.frag
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/glslang/Test/hlsl.cast.frag')
-rw-r--r--3rdparty/bgfx/3rdparty/glslang/Test/hlsl.cast.frag4
1 files changed, 4 insertions, 0 deletions
diff --git a/3rdparty/bgfx/3rdparty/glslang/Test/hlsl.cast.frag b/3rdparty/bgfx/3rdparty/glslang/Test/hlsl.cast.frag
new file mode 100644
index 00000000000..c8dc8212d06
--- /dev/null
+++ b/3rdparty/bgfx/3rdparty/glslang/Test/hlsl.cast.frag
@@ -0,0 +1,4 @@
+float4 PixelShaderFunction(float4 input) : COLOR0
+{
+ return (float4)input + (int4)input + (float4)1.198;
+}