summaryrefslogtreecommitdiffstats
path: root/tests/reflection/shared-modifier.hlsl
blob: 45a1dfac8b867c260f8ff6bac4a1050ff8e352e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// shared-modifier.hlsl
//TEST:REFLECTION:-profile ps_5_0 -target hlsl

// Confirm that we expose the `shared` modifier in reflection data.

Texture2D t;
shared SamplerState s;

float4 main(float2 uv : UV) : SV_Target
{
	return t.Sample(s, uv);
}