summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-fs-reflect.shader_test
blob: 734e3bb87a03021d70ad3556c5412768a967f86c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[require]
GLSL >= 1.10

[vertex shader]
void main()
{
	gl_Position = gl_Vertex;
}

[fragment shader]
uniform vec3 arg0;
uniform vec3 arg1;
void main()
{
	gl_FragColor = vec4(reflect(arg0, arg1), 0.0);
}

[test]
uniform vec3 arg0 -1.0 0.0 0.0
uniform vec3 arg1 0.70710678 0.70710678 0.0
draw rect -1 -1 2 2
probe rgba 1 1 0.0 1.0 0.0 0.0