[Piglit] [PATCH 5/7] ARB_pipeline_statistics_query (geom): basic test
Ben Widawsky
benjamin.widawsky at intel.com
Fri Feb 13 22:54:36 PST 2015
v2: pull in all.py change
Signed-off-by: Ben Widawsky <ben at bwidawsk.net>
---
tests/all.py | 1 +
.../spec/arb_pipeline_statistics/CMakeLists.gl.txt | 28 ++++
.../CMakeLists.gl.txt | 2 +
.../pipeline_stats_geom.c | 146 +++++++++++++++++++++
.../arb_pipeline_statistics_query/pipestat_help.c | 3 +-
5 files changed, 179 insertions(+), 1 deletion(-)
create mode 100644 tests/spec/arb_pipeline_statistics/CMakeLists.gl.txt
create mode 100644 tests/spec/arb_pipeline_statistics_query/pipeline_stats_geom.c
diff --git a/tests/all.py b/tests/all.py
index 917a99c..e7cdbed 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -3769,6 +3769,7 @@ spec['ARB_pipeline_statistics_query'] = arb_pipeline_statistics_query
add_concurrent_test(arb_pipeline_statistics_query, ['arb_pipeline_statistics_query-vert'])
add_concurrent_test(arb_pipeline_statistics_query, ['arb_pipeline_statistics_query-vert_adj'])
add_concurrent_test(arb_pipeline_statistics_query, ['arb_pipeline_statistics_query-clip'])
+add_concurrent_test(arb_pipeline_statistics_query, ['arb_pipeline_statistics_query-geom'])
# group glslparsertest ------------------------------------------------------
glslparsertest = {}
diff --git a/tests/spec/arb_pipeline_statistics/CMakeLists.gl.txt b/tests/spec/arb_pipeline_statistics/CMakeLists.gl.txt
new file mode 100644
index 0000000..efc8f7d
--- /dev/null
+++ b/tests/spec/arb_pipeline_statistics/CMakeLists.gl.txt
@@ -0,0 +1,28 @@
+include_directories(
+ ${GLEXT_INCLUDE_DIR}
+ ${OPENGL_INCLUDE_PATH}
+)
+
+link_libraries (
+ piglitutil_${piglit_target_api}
+ ${OPENGL_gl_LIBRARY}
+)
+
+# Display stuff in the tests
+#add_definitions (-DDISPLAY)
+
+# Don't bother with the piglit helper functions since we just need a simple
+# static link that won't be installed. (We'll actually anger newer cmake if we
+# use piglit helpers).
+add_library (pipestat_help STATIC pipestat_help.c)
+
+piglit_add_executable (arb_pipeline_stats_vert pipeline_stats_vert.c)
+target_link_libraries (arb_pipeline_stats_vert pipestat_help)
+piglit_add_executable (arb_pipeline_stats_vert_adj pipeline_stats_vert_adj.c)
+target_link_libraries (arb_pipeline_stats_vert_adj pipestat_help)
+piglit_add_executable (arb_pipeline_stats_geom pipeline_stats_geom.c)
+target_link_libraries (arb_pipeline_stats_geom pipestat_help)
+piglit_add_executable (arb_pipeline_stats_clip pipeline_stats_clip.c)
+target_link_libraries (arb_pipeline_stats_clip pipestat_help)
+
+# vim: ft=cmake
diff --git a/tests/spec/arb_pipeline_statistics_query/CMakeLists.gl.txt b/tests/spec/arb_pipeline_statistics_query/CMakeLists.gl.txt
index 524456a..f637f7d 100644
--- a/tests/spec/arb_pipeline_statistics_query/CMakeLists.gl.txt
+++ b/tests/spec/arb_pipeline_statistics_query/CMakeLists.gl.txt
@@ -22,5 +22,7 @@ piglit_add_executable (arb_pipeline_statistics_query-vert_adj pipeline_stats_ver
target_link_libraries (arb_pipeline_statistics_query-vert_adj pipestat_help)
piglit_add_executable (arb_pipeline_statistics_query-clip pipeline_stats_clip.c)
target_link_libraries (arb_pipeline_statistics_query-clip pipestat_help)
+piglit_add_executable (arb_pipeline_statistics_query-geom pipeline_stats_geom.c)
+target_link_libraries (arb_pipeline_statistics_query-geom pipestat_help)
# vim: ft=cmake
diff --git a/tests/spec/arb_pipeline_statistics_query/pipeline_stats_geom.c b/tests/spec/arb_pipeline_statistics_query/pipeline_stats_geom.c
new file mode 100644
index 0000000..76c9030
--- /dev/null
+++ b/tests/spec/arb_pipeline_statistics_query/pipeline_stats_geom.c
@@ -0,0 +1,146 @@
+/*
+ * Copyright © 2014 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 pipeline_stats_geom.c
+ *
+ * This test verifies that the vertex shader related tokens of
+ * ARB_pipeline_statistics_query() work as expected. OpenGL 4.4 Specification,
+ * Core Profile.
+ *
+ * When BeginQuery is called with a target of GEOMETRY_SHADER_INVOCATIONS,
+ * the geometry shader invocations count maintained by the GL is set to zero.
+ * When a geometry shader invocations query is active, the counter is
+ * incremented every time the geometry shader is invoked (see section 11.3).
+ * In case of instanced geometry shaders (see section 11.3.4.2) the geometry
+ * shader invocations count is incremented for each separate instanced
+ * invocation.
+ *
+ * When BeginQuery is called with a target of GEOMETRY_SHADER_PRIMITIVES_-
+ * EMITTED_ARB, the geometry shader output primitives count maintained by the
+ * GL is set to zero. When a geometry shader primitives emitted query is
+ * active, the counter is incremented every time the geometry shader emits
+ * a primitive to a vertex stream that is further processed by the GL (see
+ * section 11.3.2). Restarting primitive topology using the shading language
+ * built-in functions EndPrimitive or EndStreamPrimitive does not increment
+ * the geometry shader output primitives count.
+ *
+ * (The chicken clause)
+ * The result of geometry shader queries may be implementation dependent due
+ * to reasons described in section 11.1.3.
+ */
+
+#include "piglit-util-gl.h"
+#include "pipestat_help.h"
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+ config.supports_gl_core_version = 32;
+ config.supports_gl_compat_version = 32;
+ config.window_visual = PIGLIT_GL_VISUAL_DOUBLE | PIGLIT_GL_VISUAL_RGBA;
+PIGLIT_GL_TEST_CONFIG_END
+
+const char *vs_src =
+ "#version 150 \n"
+ "in vec4 piglit_vertex; \n"
+ "out vec4 vertex_to_gs; \n"
+ "void main() \n"
+ "{ \n"
+ " vertex_to_gs = piglit_vertex;\n"
+ "} \n";
+
+const char *gs_src =
+ "#version 150 \n"
+ "layout(triangles) in; \n"
+ "layout(triangle_strip, max_vertices = 3) out; \n"
+ "in vec4 vertex_to_gs[3]; \n"
+ "void main() \n"
+ "{ \n"
+ " for (int i = 0; i < 3; i++) { \n"
+ " gl_Position = vertex_to_gs[i]; \n"
+ " EmitVertex(); \n"
+ " } \n"
+ "} \n";
+
+#ifdef DISPLAY
+const char *fs_src =
+ "#version 150 \n"
+ "out vec4 color; \n"
+ "void main() \n"
+ "{ \n"
+ " color = vec4(0.0, 1.0, 0.0, 1.0); \n"
+ "} \n";
+#endif
+
+static struct query queries[] = {
+ {
+ .query = GL_GEOMETRY_SHADER_INVOCATIONS,
+ .name = "GL_GEOMETRY_SHADER_INVOCATIONS",
+ .min = NUM_PRIMS},
+ {
+ .query = GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB,
+ .name = "GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB",
+ .min = NUM_PRIMS}
+};
+
+enum piglit_result
+piglit_display(void)
+{
+ enum piglit_result ret = do_query(queries, ARRAY_SIZE(queries));
+#ifdef DISPLAY
+ piglit_present_results();
+#endif
+ return ret;
+}
+
+void
+piglit_init(int argc, char *argv[])
+{
+ GLuint vs, gs, prog;
+
+ piglit_require_gl_version(15);
+ piglit_require_GLSL();
+
+ do_query_init(queries, ARRAY_SIZE(queries));
+
+ prog = glCreateProgram();
+
+ vs = piglit_compile_shader_text(GL_VERTEX_SHADER, vs_src);
+ gs = piglit_compile_shader_text(GL_GEOMETRY_SHADER, gs_src);
+
+#ifndef DISPLAY
+ glEnable(GL_RASTERIZER_DISCARD);
+#else
+ glAttachShader(prog,
+ piglit_compile_shader_text(GL_FRAGMENT_SHADER, fs_src));
+#endif
+
+ glAttachShader(prog, vs);
+ glAttachShader(prog, gs);
+ glLinkProgram(prog);
+
+ if (!piglit_link_check_status(prog)) {
+ glDeleteProgram(prog);
+ piglit_report_result(PIGLIT_FAIL);
+ }
+
+ glUseProgram(prog);
+}
diff --git a/tests/spec/arb_pipeline_statistics_query/pipestat_help.c b/tests/spec/arb_pipeline_statistics_query/pipestat_help.c
index 99180cd..e269327 100644
--- a/tests/spec/arb_pipeline_statistics_query/pipestat_help.c
+++ b/tests/spec/arb_pipeline_statistics_query/pipestat_help.c
@@ -71,7 +71,8 @@ do_query_func(const struct query *queries, const int count,
glClearColor(1.0, 0.0, 0.0, 0.0);
glClear(GL_COLOR_BUFFER_BIT);
- glColor4fv(green);
+ if (piglit_get_gl_version() <= 30)
+ glColor4fv(green);
for (i = 0; i < count; i++)
begin_query(&queries[i]);
--
2.3.0
More information about the Piglit
mailing list