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