blob: e87f2b3c09bebb7bab82bb2be3265e2138f34652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[require]
GLSL >= 1.10
[vertex shader]
/* Verify that a vertex shader that writes a non-fixed-function varying is
* compatible with fixed-function fragment processing.
*
* See also bugzilla #29623.
*/
varying float v;
void main()
{
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
gl_FrontColor = vec4(0.0, 1.0, 0.0, 1.0);
v = 0.0;
}
[test]
clear color 0.0 0.0 0.0 0.0
clear
ortho
draw rect 10 10 10 10
probe rgb 15 15 0.0 1.0 0.0
|