aboutsummaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-fs-texturecube-2.c
blob: 4c3fd30f78aee47da89cb9b8c62c1b8e2e0c22fb (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
 * Copyright © 2010 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 *
 * Authors:
 *    Eric Anholt <eric@anholt.net>
 *
 */

/** @file glsl-fs-texturecube-2.c
 *
 * Tests that cubemap coordinates are appropriately normalized for
 * sampling.
 */

#include "piglit-util-gl-common.h"

#define SIZE 32

PIGLIT_GL_TEST_CONFIG_BEGIN

	config.window_width = SIZE*6;
	config.window_height = SIZE;
	config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_ALPHA | PIGLIT_GL_VISUAL_DOUBLE;

PIGLIT_GL_TEST_CONFIG_END

static GLint prog;

static GLfloat colors[][3] = {
	{1.0, 1.0, 1.0},
	{1.0, 1.0, 0.0},
	{1.0, 0.0, 0.0},
	{1.0, 0.0, 1.0},
	{0.0, 0.0, 1.0},
	{0.0, 1.0, 1.0},
	{0.0, 1.0, 0.0},
};


static void
set_face_image(GLenum face, int color)
{
	GLfloat *color1 = colors[color];
	GLfloat *color2 = colors[(color + 1) % ARRAY_SIZE(colors)];
	GLfloat *tex;
	int x, y;

	tex = malloc(SIZE * SIZE * 3 * sizeof(GLfloat));

	/* Set the texture for this face the edge pixels being color1
	 * and everything else being color2.
	 */
	for (y = 0; y < SIZE; y++) {
		for (x = 0; x < SIZE; x++) {
			GLfloat *chosen_color;

			if (x == 0 || x == SIZE - 1 || y == 0 || y == SIZE - 1)
				chosen_color = color1;
			else
				chosen_color = color2;

			tex[(y * SIZE + x) * 3 + 0] = chosen_color[0];
			tex[(y * SIZE + x) * 3 + 1] = chosen_color[1];
			tex[(y * SIZE + x) * 3 + 2] = chosen_color[2];
		}
	}

	glTexImage2D(face, 0, GL_RGB, SIZE, SIZE, 0, GL_RGB, GL_FLOAT, tex);

	free(tex);
}


enum piglit_result
piglit_display(void)
{
	GLboolean pass = GL_TRUE;
	GLuint tex;
	int face;
	static GLboolean scale = GL_TRUE;

	/* Rescale the coordinates to catch failure on hw that needs
	 * normalization of coords.
	 */
	if (scale) {
		for (face = 0; face < 6; face++) {
			int i;

			for (i = 0; i < 4; i++) {
				float s = 4;
				cube_face_texcoords[face][i][0] *= s;
				cube_face_texcoords[face][i][1] *= s;
				cube_face_texcoords[face][i][2] *= s;
			}
		}
		scale = GL_FALSE;
	}

	piglit_ortho_projection(piglit_width, piglit_height, GL_FALSE);

	/* Create the texture. */
	glGenTextures(1, &tex);
	glBindTexture(GL_TEXTURE_CUBE_MAP_ARB, tex);

	glTexParameteri(GL_TEXTURE_CUBE_MAP_ARB,
			GL_TEXTURE_MIN_FILTER, GL_NEAREST);
	glTexParameteri(GL_TEXTURE_CUBE_MAP_ARB,
			GL_TEXTURE_MAG_FILTER, GL_NEAREST);
	glTexParameteri(GL_TEXTURE_CUBE_MAP_ARB,
			GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
	glTexParameteri(GL_TEXTURE_CUBE_MAP_ARB,
			GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);

	/* Fill in faces on each level */
	for (face = 0; face < 6; face++) {
		set_face_image(cube_face_targets[face], face);
	}

	glEnable(GL_TEXTURE_CUBE_MAP_ARB);

	for (face = 0; face < 6; face++) {
		int x1 = piglit_width * face / 6;
		int x2 = piglit_width * (face + 1) / 6;
		int y1 = 0;
		int y2 = piglit_height;

		glBegin(GL_QUADS);

		glTexCoord3fv(cube_face_texcoords[face][0]);
		glVertex2f(x1, y1);

		glTexCoord3fv(cube_face_texcoords[face][1]);
		glVertex2f(x2, y1);

		glTexCoord3fv(cube_face_texcoords[face][2]);
		glVertex2f(x2, y2);

		glTexCoord3fv(cube_face_texcoords[face][3]);
		glVertex2f(x1, y2);

		glEnd();
	}

	for (face = 0; face < 6; face++) {
		GLfloat *color1 = colors[face];
		GLfloat *color2 = colors[(face + 1) % ARRAY_SIZE(colors)];
		int fx = face * SIZE;
		int x, y;

		if (piglit_width != SIZE * 6 || piglit_height != SIZE)
			break;

		for (y = 0; y < SIZE; y++) {
			for (x = 0; x < SIZE; x++) {
				float *color;

				if (x == 0 || y == 0 ||
				    x == SIZE - 1 || y == SIZE - 1) {
					color = color1;
				} else {
					color = color2;
				}

				pass = pass && piglit_probe_pixel_rgb(fx + x,
								      y,
								      color);
			}
		}
	}

	glDeleteTextures(1, &tex);

	piglit_present_results();

	return pass ? PIGLIT_PASS : PIGLIT_FAIL;
}

void piglit_init(int argc, char **argv)
{
	GLint vs, fs;
	int loc;
	GLboolean bias = GL_FALSE;
	char *fs_name;
	int i = 0;

	for (i = 0; i < argc; i++) {
		if (!strcmp(argv[i], "-bias"))
			bias = GL_TRUE;
	}

	piglit_require_gl_version(20);
	piglit_require_extension("GL_ARB_texture_cube_map");

	vs = piglit_compile_shader(GL_VERTEX_SHADER,
				   "shaders/glsl-tex-mvp.vert");
	if (bias) {
		fs_name = "shaders/glsl-fs-texturecube-bias.frag";
	} else {
		fs_name = "shaders/glsl-fs-texturecube.frag";
	}
	fs = piglit_compile_shader(GL_FRAGMENT_SHADER, fs_name);

	prog = piglit_link_simple_program(vs, fs);
	if (!piglit_link_check_status(prog))
		piglit_report_result(PIGLIT_FAIL);

	glUseProgram(prog);

	loc = glGetUniformLocation(prog, "sampler");
	glUniform1i(loc, 0);
}