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
|
/*
* Copyright © 2013 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.
*/
/** @file multi-draw-elements-base-vertex.c
*
* Section 2.8.2(Vertex Arrays) From GL spec 3.2 core:
* glMultiDrawElementsBaseVertex was added.
*
*
* (0)-------(1) Set up indices for quad 1 and 3.
* | 1 |
* (2)-------(3) Use a basevertex of 2 to shift
* | 2 | indices from quad 1 to 2 and
* (4)-------(5) from quad 3 to 4
* | 3 |
* (6)-------(7) End result 1 and 3 should be
* | 4 | blue while 2 and 4 are green.
* (8)-------(9)
*
*
* MultiDrawElementsBaseVertex behaves identically to
* DrawElementsBaseVertex, except that primcount separate
* lists of elements are specified instead. It has the
* same effect as:
*
* for (int i = 0; i < primcount ; i++)
* if (count[i] > 0)
* DrawElementsBaseVertex(mode, count[i], type,
* indices[i], basevertex[i]);
*
*/
#include "piglit-util-gl.h"
PIGLIT_GL_TEST_CONFIG_BEGIN
config.supports_gl_compat_version = 10;
config.window_width = 200;
config.window_height = 200;
config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE;
config.khr_no_error_support = PIGLIT_NO_ERRORS;
PIGLIT_GL_TEST_CONFIG_END
const char *vs_source = {
"#version 130\n"
"in vec2 vertex;\n"
"void main() {\n"
" gl_Position = vec4(vertex.xy, 0, 1);\n"
"}\n"
};
const char *fs_source = {
"#version 130\n"
"void main() {\n"
" gl_FragColor = vec4(0, 1, 0, 1);\n"
"}\n"
};
static GLuint vao;
static GLuint vertexBuffer;
static GLuint indexBuffer;
/*
* sets of two (x,y)
*/
static GLfloat vertices[] = {
-1.0, 1.0,
1.0, 1.0,
-1.0, 0.5,
1.0, 0.5,
-1.0, 0.0,
1.0, 0.0,
-1.0,-0.5,
1.0,-0.5,
-1.0,-1.0,
1.0,-1.0
};
static GLsizei vertices_size = sizeof(vertices);
static GLuint indices[] = {
0, 1, 2, 1, 2, 3, /* top square */
4, 5, 6, 5, 6, 7, /* bot square */
};
static GLsizei indices_size = sizeof(indices);
static const uintptr_t indices_offset[] = {
0, 6 * sizeof(GLuint)
};
static GLsizei indices_count[] = {
6, 6
};
static GLint basevertex[] = { 2, 2 };
static bool indirect;
void
piglit_init(int argc, char **argv)
{
for (int i = 1; i < argc; i++) {
if (strcmp(argv[i], "-indirect") == 0) {
piglit_require_extension("GL_ARB_multi_draw_indirect");
puts("Testing GL_ARB_multi_draw_indirect");
indirect = true;
}
}
GLuint program;
GLuint vertex_index;
piglit_require_GLSL_version(130);
if (piglit_get_gl_version() < 32) {
piglit_require_extension("GL_ARB_draw_elements_base_vertex");
}
/* Create program */
program = piglit_build_simple_program(vs_source, fs_source);
glUseProgram(program);
/* Retrieve index from vs */
vertex_index = glGetAttribLocation(program, "vertex");
glEnableVertexAttribArray(vertex_index);
/* Gen vertex array buffer */
if (indirect) {
/* Use non-VBO attributes to test this codepath. */
glVertexAttribPointer(vertex_index, 2, GL_FLOAT, GL_FALSE, 0, vertices);
} else {
glGenBuffers(1, &vertexBuffer);
glBindBuffer(GL_ARRAY_BUFFER, vertexBuffer);
glBufferData(GL_ARRAY_BUFFER, vertices_size, vertices, GL_STATIC_DRAW);
glVertexAttribPointer(vertex_index, 2, GL_FLOAT, GL_FALSE, 0, 0);
}
/* Gen indices array buffer */
glGenBuffers(1, &indexBuffer);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, indexBuffer);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, indices_size,
indices, GL_STATIC_DRAW);
if(!piglit_check_gl_error(GL_NO_ERROR))
piglit_report_result(PIGLIT_FAIL);
}
enum piglit_result
piglit_display(void)
{
bool pass = true;
float green[] = {0, 1, 0};
float blue[] = {0, 0, 1};
glClearColor(blue[0], blue[1], blue[2], 1.0);
glClear(GL_COLOR_BUFFER_BIT);
glBindVertexArray(vao);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, indexBuffer);
if (indirect) {
unsigned data[2 * 5];
for (unsigned i = 0; i < 2; i++) {
data[i*5+0] = indices_count[i];
data[i*5+1] = 1;
data[i*5+2] = indices_offset[i] / sizeof(GLuint);
data[i*5+3] = basevertex[i];
data[i*5+4] = 0;
}
GLuint ib;
glGenBuffers(1, &ib);
glBindBuffer(GL_DRAW_INDIRECT_BUFFER, ib);
glBufferData(GL_DRAW_INDIRECT_BUFFER, sizeof(data), data,
GL_STATIC_DRAW);
glMultiDrawElementsIndirect(GL_TRIANGLES, GL_UNSIGNED_INT, NULL, 2, 0);
glDeleteBuffers(1, &ib);
} else {
glMultiDrawElementsBaseVertex(GL_TRIANGLES, indices_count,
GL_UNSIGNED_INT, (GLvoid*)indices_offset,
2, basevertex);
}
/* Check for test pass */
pass = piglit_probe_pixel_rgb(100, 175, blue) && pass;
pass = piglit_probe_pixel_rgb(100, 125, green) && pass;
pass = piglit_probe_pixel_rgb(100, 75, blue) && pass;
pass = piglit_probe_pixel_rgb(100, 25, green) && pass;
if(!piglit_check_gl_error(GL_NO_ERROR))
pass = false;
piglit_present_results();
return pass ? PIGLIT_PASS : PIGLIT_FAIL;
}
|