summaryrefslogtreecommitdiff
path: root/tests/reflection/sample-rate-input.glsl
blob: 66763f45d7a4aaab7c72f4721837d10116fb7218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//TEST(smoke):SIMPLE:-profile ps_4_0 -no-checking -target reflection-json

// Check that we report sample-rate entry point input correctly

uniform texture2D t;
uniform sampler s;

sample in vec2 uv;

out vec4 c;

void main()
{
    c = texture(sampler2D(t,s), uv);
}