summaryrefslogtreecommitdiffstats
path: root/tests/reflection/resource-in-cbuffer.hlsl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reflection/resource-in-cbuffer.hlsl')
-rw-r--r--tests/reflection/resource-in-cbuffer.hlsl21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/reflection/resource-in-cbuffer.hlsl b/tests/reflection/resource-in-cbuffer.hlsl
new file mode 100644
index 000000000..956387587
--- /dev/null
+++ b/tests/reflection/resource-in-cbuffer.hlsl
@@ -0,0 +1,21 @@
+//TEST:SIMPLE:-profile ps_4_0 -target reflection-json
+
+// Confirm that we can generate reflection
+// information for resources nested inside
+// a cbuffer:
+
+cbuffer MyConstantBuffer
+{
+ float3 v;
+
+ Texture2D myTexture;
+
+ float c;
+
+ SamplerState mySampler;
+}
+
+float4 main() : SV_Target
+{
+ return 0.0;
+} \ No newline at end of file