summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/glslang/Test/hlsl.attribute.frag
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/glslang/Test/hlsl.attribute.frag')
-rw-r--r--3rdparty/bgfx/3rdparty/glslang/Test/hlsl.attribute.frag13
1 files changed, 13 insertions, 0 deletions
diff --git a/3rdparty/bgfx/3rdparty/glslang/Test/hlsl.attribute.frag b/3rdparty/bgfx/3rdparty/glslang/Test/hlsl.attribute.frag
new file mode 100644
index 00000000000..9ff8541c1fd
--- /dev/null
+++ b/3rdparty/bgfx/3rdparty/glslang/Test/hlsl.attribute.frag
@@ -0,0 +1,13 @@
+void PixelShaderFunction(float4 input) : COLOR0
+{
+ [unroll];
+ [];
+ [][][];
+ [unroll(4)];
+ [allow_uav_condition];
+ [unroll(4)] [allow_uav_condition];
+ [ loop ];
+ [fastopt];
+ [branch] if (0);
+ [flatten];
+}