File: glsl-fs-sampler-numbering-2.shader_test

package info (click to toggle)
piglit 0~git20150829-59d7066-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 39,280 kB
  • sloc: ansic: 191,513; xml: 43,580; cpp: 29,351; python: 18,307; lisp: 8,347; sh: 507; makefile: 17; pascal: 5
file content (50 lines) | stat: -rw-r--r-- 1,169 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[require]
GLSL >= 1.10

[vertex shader]
varying vec2 texcoords;
uniform float yoffset;

void main()
{
	gl_Position = gl_Vertex;
	texcoords = gl_Vertex.xy + vec2(0.0, yoffset);
}

[fragment shader]
varying vec2 texcoords;
uniform sampler2D left;
uniform sampler2D right;

void main()
{
	if (texcoords.x < 0.0) {
		gl_FragColor = texture2D(left, texcoords.xy + vec2(1.0, 0.0));
	} else {
		gl_FragColor = texture2D(right, texcoords.xy);
	}
}

[test]
texture checkerboard 0 0 (8, 8) (0.0, 0.0, 0.0, 0.0) (0.0, 1.0, 0.0, 0.0)
texture checkerboard 1 0 (8, 8) (0.0, 0.0, 0.0, 0.0) (1.0, 0.0, 0.0, 0.0)

uniform int left 0
uniform int right 1
uniform float yoffset 1.0
draw rect -1 -1 2 1

uniform int left 1
uniform int right 0
uniform float yoffset 0.0
draw rect -1 0 2 1

relative probe rgb (0.375, 0.125) (0.0, 1.0, 0.0)
relative probe rgb (0.125, 0.375) (0.0, 1.0, 0.0)
relative probe rgb (0.875, 0.625) (0.0, 1.0, 0.0)
relative probe rgb (0.675, 0.875) (0.0, 1.0, 0.0)

relative probe rgb (0.875, 0.125) (1.0, 0.0, 0.0)
relative probe rgb (0.625, 0.375) (1.0, 0.0, 0.0)
relative probe rgb (0.375, 0.625) (1.0, 0.0, 0.0)
relative probe rgb (0.125, 0.875) (1.0, 0.0, 0.0)