summaryrefslogtreecommitdiffstats
path: root/tests/rewriter/resources-in-structs.slang
blob: 79eca11ac474bc2b6975c24e21956fdab5c50b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//TEST_IGNORE_FILE:

struct Material
{
	float4 color;
	Texture2D t;
	SamplerState s;
};

float4 evaluateMaterial(Material m, float2 uv)
{
	return m.color + m.t.Sample(m.s, uv);
}