File: rendezvous_by_name_interpolation.c

package info (click to toggle)
piglit 0~git20200212-f4710c51b-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 106,972 kB
  • sloc: ansic: 263,763; xml: 48,941; python: 29,918; lisp: 19,789; cpp: 12,142; sh: 22; makefile: 20; pascal: 5
file content (207 lines) | stat: -rw-r--r-- 5,958 bytes parent folder | download | duplicates (3)
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
/*
 * Copyright © 2015 Gregory Hainaut <gregory.hainaut@gmail.com>
 *
 * 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.
 */

/**
 * \file rendezvous_by_name_interpolation.c
 * Simple test for separate shader objects that use rendezvous-by-name.
 *
 * This test ensures that multiple interpolation qualifiers don't break
 * interface matching.
 *
 * We first test matching of a VS and FS with matching interpolation
 * qualifiers. Next we ensure that non-matching interpolation qualifiers
 * also work. Technically interpolation mismatching is only allowed
 * starting with GLSL 4.5 however its unlikely any implementation inforces
 * this constraint.
 */
#include "piglit-util-gl.h"
#include "sso-common.h"

PIGLIT_GL_TEST_CONFIG_BEGIN

	config.supports_gl_compat_version = 10;
	config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE;

PIGLIT_GL_TEST_CONFIG_END

static GLuint pipeline_match[4];
static GLuint pipeline_unmatch[4];

static const char *vs_code_template =
	"#version %d\n"
	"#extension GL_ARB_separate_shader_objects: require\n"
	"#extension GL_ARB_explicit_attrib_location: require\n"
	"\n"
	"layout(location = 0) in vec4 piglit_vertex;\n"
	"\n"
	"%s out vec4 blue;\n"
	"%s out vec4 green;\n"
	"%s out vec4 red;\n"
	"\n"
	"void main()\n"
	"{\n"
	"    gl_Position = piglit_vertex;\n"
	"    red   = vec4(1, 0, 0, 0);\n"
	"    green = vec4(0, 1, 0, 0);\n"
	"    blue  = vec4(0, 0, 1, 0);\n"
	"}\n"
	;

static const char *fs_code_template =
	"#version %d\n"
	"#extension GL_ARB_separate_shader_objects: require\n"
	"#extension GL_ARB_explicit_attrib_location: enable\n"
	"\n"
	"#if __VERSION__ >= 130\n"
	"layout(location = 0) out vec4 out_color;\n"
	"#else\n"
	"#define out_color gl_FragColor\n"
	"#endif\n"
	"\n"
	"%s in vec4 blue;\n"
	"%s in vec4 green;\n"
	"%s in vec4 red;\n"
	"\n"
	"void main()\n"
	"{\n"
	"    out_color = vec4(red.r, green.g, blue.b, 1);\n"
	"}\n"
	;

static const char *qualifiers[] = {
	"",
	"flat",
	"smooth",
	"noperspective"
};

enum piglit_result
piglit_display(void)
{
	static const float expected[] = {
		1.0f, 1.0f, 1.0f, 1.0f
	};
	bool pass = true;
	int i;

	glClearColor(0.1f, 0.1f, 0.1f, 0.1f);
	glClear(GL_COLOR_BUFFER_BIT);

	for (i = 0; i < 4; i++) {
		float w = 0.5;
		float x = -1.0 + w * i;
		/*
		 * Match qualifier on bottom row
		 */
		glBindProgramPipeline(pipeline_match[i]);
		piglit_draw_rect(x, -1, w, 1);

		/*
		 * Unmatch qualifier on top row
		 */
		glBindProgramPipeline(pipeline_unmatch[i]);
		piglit_draw_rect(x, 0, w, 1);
	}

	pass &= piglit_probe_rect_rgba(0, 0, piglit_width, piglit_height,
				      expected);

	piglit_present_results();

	return pass ? PIGLIT_PASS : PIGLIT_FAIL;
}

GLuint format_and_link_program_with_qualifiers(GLenum type, const char* code,
		unsigned glsl_version, unsigned q1, unsigned q2, unsigned q3)
{
	char *source;
	GLuint prog;

	(void)!asprintf(&source, code, glsl_version, qualifiers[q1], qualifiers[q2], qualifiers[q3]);
	prog = glCreateShaderProgramv(type, 1,
			(const GLchar *const *) &source);

	piglit_link_check_status(prog);
	free(source);

	return prog;
}

void piglit_init(int argc, char **argv)
{
	unsigned i;
	unsigned glsl_version;
	GLuint vs_prog[4];
	GLuint fs_prog_match[4];
	GLuint fs_prog_unmatch[4];

	piglit_require_vertex_shader();
	piglit_require_fragment_shader();
	piglit_require_GLSL_version(130); /* Support layout index on output color */
	piglit_require_extension("GL_ARB_separate_shader_objects");
	piglit_require_extension("GL_ARB_explicit_attrib_location");
	piglit_require_extension("GL_ARB_blend_func_extended");

	glsl_version = pick_a_glsl_version();

	/*
	 * Program compilation and link
	 */
	for (i = 0; i < 4; i++) {
		int next = (i+1) % 4;
		int prev = (i-1) % 4;
		printf("Compile vs_prog[%d]\n", i);
		vs_prog[i] = format_and_link_program_with_qualifiers(GL_VERTEX_SHADER,
				vs_code_template, glsl_version, prev, i, next);

		printf("Compile fs_prog_match[%d]\n", i);
		fs_prog_match[i] = format_and_link_program_with_qualifiers(GL_FRAGMENT_SHADER,
				fs_code_template, glsl_version, prev, i, next);

		printf("Compile fs_prog_unmatch[%d]\n", i);
		fs_prog_unmatch[i] = format_and_link_program_with_qualifiers(GL_FRAGMENT_SHADER,
				fs_code_template, glsl_version, next, prev, i);
	}

	/*
	 * Pipeline creation
	 */
	glGenProgramPipelines(4, pipeline_match);
	glGenProgramPipelines(4, pipeline_unmatch);
	for (i = 0; i < 4; i++) {
		glBindProgramPipeline(pipeline_match[i]);
		glUseProgramStages(pipeline_match[i],
				GL_VERTEX_SHADER_BIT, vs_prog[i]);
		glUseProgramStages(pipeline_match[i],
				GL_FRAGMENT_SHADER_BIT, fs_prog_match[i]);

		glBindProgramPipeline(pipeline_unmatch[i]);
		glUseProgramStages(pipeline_unmatch[i],
				GL_VERTEX_SHADER_BIT, vs_prog[i]);
		glUseProgramStages(pipeline_unmatch[i],
				GL_FRAGMENT_SHADER_BIT, fs_prog_unmatch[i]);
	}

	if (!piglit_check_gl_error(0))
		piglit_report_result(PIGLIT_FAIL);
}