blob: b8151aee1b493af33b2d7105b4ec816d98fc46b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//TEST(smoke):REFLECTION:-profile ps_4_0 -no-checking
// 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);
}
|