summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-const-builtin-abs.shader_test
blob: 02ec32943cfb74537c093a6226a2f7591cbb27c2 (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.20

[vertex shader file]
glsl-mvp.vert

[fragment shader]
#version 120
void main()
{
    const float x = abs(-0.5);
    const float y = abs(0.0);
    const float z = abs(0.5);
    gl_FragColor = vec4(x, y, z, 1.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.5 0.0 0.5