[Piglit] [PATCH] GL_MESA_pack_invert: Add a test for a few glReadPixels() cases.
Eric Anholt
eric at anholt.net
Mon Dec 23 12:46:55 PST 2013
We had no tests of this extension in the tree, and sure enough i965
was broken (causing GPU hangs).
---
tests/all.tests | 4 +
tests/spec/CMakeLists.txt | 1 +
tests/spec/mesa_pack_invert/CMakeLists.gl.txt | 12 ++
tests/spec/mesa_pack_invert/CMakeLists.txt | 1 +
tests/spec/mesa_pack_invert/readpixels.c | 199 ++++++++++++++++++++++++++
5 files changed, 217 insertions(+)
create mode 100644 tests/spec/mesa_pack_invert/CMakeLists.gl.txt
create mode 100644 tests/spec/mesa_pack_invert/CMakeLists.txt
create mode 100644 tests/spec/mesa_pack_invert/readpixels.c
diff --git a/tests/all.tests b/tests/all.tests
index 1de421f..126ea95 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -2727,6 +2727,10 @@ add_plain_test(apple_object_purgeable, 'object_purgeable-api-pbo')
add_plain_test(apple_object_purgeable, 'object_purgeable-api-texture')
add_plain_test(apple_object_purgeable, 'object_purgeable-api-vbo')
+mesa_pack_invert = Group()
+spec['MESA_pack_invert/readpixels'] = mesa_pack_invert
+mesa_pack_invert['readpixels'] = concurrent_test('mesa_pack_invert-readpixels')
+
oes_read_format = Group()
spec['OES_read_format'] = oes_read_format
add_plain_test(oes_read_format, 'oes-read-format')
diff --git a/tests/spec/CMakeLists.txt b/tests/spec/CMakeLists.txt
index 7f6bf47..2834382 100644
--- a/tests/spec/CMakeLists.txt
+++ b/tests/spec/CMakeLists.txt
@@ -84,6 +84,7 @@ add_subdirectory (glx_arb_create_context)
add_subdirectory (glx_ext_import_context)
add_subdirectory (glx_mesa_query_renderer)
add_subdirectory (glx_oml_sync_control)
+add_subdirectory (mesa_pack_invert)
add_subdirectory (arb_vertex_type_2_10_10_10_rev)
add_subdirectory (ext_texture_array)
add_subdirectory (ext_texture_integer)
diff --git a/tests/spec/mesa_pack_invert/CMakeLists.gl.txt b/tests/spec/mesa_pack_invert/CMakeLists.gl.txt
new file mode 100644
index 0000000..8768d83
--- /dev/null
+++ b/tests/spec/mesa_pack_invert/CMakeLists.gl.txt
@@ -0,0 +1,12 @@
+include_directories(
+ ${GLEXT_INCLUDE_DIR}
+ ${OPENGL_INCLUDE_PATH}
+)
+
+link_libraries (
+ piglitutil_${piglit_target_api}
+ ${OPENGL_gl_LIBRARY}
+ ${OPENGL_glu_LIBRARY}
+)
+
+piglit_add_executable (mesa_pack_invert-readpixels readpixels.c)
diff --git a/tests/spec/mesa_pack_invert/CMakeLists.txt b/tests/spec/mesa_pack_invert/CMakeLists.txt
new file mode 100644
index 0000000..144a306
--- /dev/null
+++ b/tests/spec/mesa_pack_invert/CMakeLists.txt
@@ -0,0 +1 @@
+piglit_include_target_api()
diff --git a/tests/spec/mesa_pack_invert/readpixels.c b/tests/spec/mesa_pack_invert/readpixels.c
new file mode 100644
index 0000000..5f7daae
--- /dev/null
+++ b/tests/spec/mesa_pack_invert/readpixels.c
@@ -0,0 +1,199 @@
+/*
+ * 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 readpixels.c
+ *
+ * Simple touch test of glReadPixels() using GL_PACK_INVERT_MESA, to a
+ * PBO or user memory, with format conversions or (hopefully) not.
+ */
+
+#include "piglit-util-gl-common.h"
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+ config.supports_gl_compat_version = 10;
+
+ config.window_visual = PIGLIT_GL_VISUAL_DOUBLE | PIGLIT_GL_VISUAL_RGBA;
+
+PIGLIT_GL_TEST_CONFIG_END
+
+/* Size of the RGBW rect on the screen: at 6 pixels, the unorm failure
+ * result fits in an 80-column terminal.
+ */
+#define W 6
+#define H 6
+
+static bool
+check_unorm(uint32_t *data, const char *name)
+{
+ int x, y;
+
+ for (y = 0; y < H; y++) {
+ for (x = 0; x < W; x++) {
+ uint32_t colors[] = {
+ 0x000000ff,
+ 0xffffffff,
+ 0x00ff0000,
+ 0x0000ff00
+ };
+ int i = (y >= H / 2) * 2 + (x >= W / 2);
+ uint32_t expected = colors[i];
+
+ if (data[y * W + x] != expected) {
+ fprintf(stderr,
+ "%s pixel value read at (%d, %d) was 0x%08x, "
+ "expected 0x%08x\n",
+ name, x, y, data[y * W + x], expected);
+ fprintf(stderr, "\n");
+
+ for (y = 0; y < H; y++) {
+ for (x = 0; x < W; x++) {
+ fprintf(stderr, "0x%08x ", data[y * W + x]);
+ }
+ fprintf(stderr, "\n");
+ }
+
+ piglit_report_subtest_result(PIGLIT_FAIL, name);
+ return false;
+ }
+ }
+ }
+
+ piglit_report_subtest_result(PIGLIT_PASS, name);
+ return true;
+}
+
+static bool
+check_float(float *data, const char *name)
+{
+ int x, y;
+
+ for (y = 0; y < H; y++) {
+ for (x = 0; x < W; x++) {
+ float colors[4][4] = {
+ {0, 0, 1, 0},
+ {1, 1, 1, 1},
+ {1, 0, 0, 0},
+ {0, 1, 0, 0},
+ };
+ int i = (y >= H / 2) * 2 + (x >= W / 2);
+ float *expected = colors[i];
+ float *result = &data[(y * W + x) * 4];
+
+ if (memcmp(result, expected, sizeof(float[4])) != 0) {
+ fprintf(stderr,
+ "%s pixel value read at (%d, %d):\n"
+ " was %f, %f, %f, %f\n"
+ " expected %f, %f, %f, %f\n",
+ name, x, y,
+ result[0],
+ result[1],
+ result[2],
+ result[3],
+ expected[0],
+ expected[1],
+ expected[2],
+ expected[3]);
+ fprintf(stderr, "\n");
+
+ piglit_report_subtest_result(PIGLIT_FAIL, name);
+ return false;
+ }
+ }
+ }
+
+ piglit_report_subtest_result(PIGLIT_PASS, name);
+ return true;
+}
+
+enum piglit_result
+piglit_display(void)
+{
+ bool pass = true;
+ GLuint pbo;
+ uint32_t bgra_unorm[W * H];
+ float rgba_float[W * H * 4];
+ void *map;
+
+ glGenBuffers(1, &pbo);
+ glBindBuffer(GL_PIXEL_PACK_BUFFER, pbo);
+ glBufferData(GL_PIXEL_PACK_BUFFER, W * H * sizeof(float[4]),
+ NULL, GL_STREAM_READ_ARB);
+ glPixelStorei(GL_PACK_ALIGNMENT, 1);
+
+ glClearColor(0.5, 0.5, 0.5, 0.5);
+ glClear(GL_COLOR_BUFFER_BIT);
+
+ piglit_ortho_projection(piglit_width, piglit_height, false);
+
+ glColor4f(1, 0, 0, 0);
+ piglit_draw_rect(5, 5,
+ W / 2, H / 2);
+ glColor4f(0, 1, 0, 0);
+ piglit_draw_rect(5 + W / 2, 5,
+ W / 2, H / 2);
+ glColor4f(0, 0, 1, 0);
+ piglit_draw_rect(5, 5 + H / 2,
+ W / 2, H / 2);
+ glColor4f(1, 1, 1, 1);
+ piglit_draw_rect(5 + W / 2, 5 + H / 2,
+ W / 2, H / 2);
+
+ glPixelStorei(GL_PACK_INVERT_MESA, 1);
+
+ glBindBuffer(GL_PIXEL_PACK_BUFFER, 0);
+ glReadPixels(5, 5, W, H, GL_BGRA, GL_UNSIGNED_BYTE, bgra_unorm);
+ if (!check_unorm(bgra_unorm, "non-PBO unorm BGRA"))
+ pass = false;
+
+ glBindBuffer(GL_PIXEL_PACK_BUFFER, pbo);
+ glReadPixels(5, 5, W, H, GL_BGRA, GL_UNSIGNED_BYTE, NULL);
+ map = glMapBuffer(GL_PIXEL_PACK_BUFFER, GL_READ_ONLY);
+ if (!check_unorm(map, "PBO unorm BGRA"))
+ pass = false;
+ glUnmapBuffer(GL_PIXEL_PACK_BUFFER);
+
+ glBindBuffer(GL_PIXEL_PACK_BUFFER, 0);
+ glReadPixels(5, 5, W, H, GL_RGBA, GL_FLOAT, rgba_float);
+ if (!check_float(rgba_float, "non-PBO float RGBA"))
+ pass = false;
+
+ glBindBuffer(GL_PIXEL_PACK_BUFFER, pbo);
+ glReadPixels(5, 5, W, H, GL_RGBA, GL_FLOAT, NULL);
+ map = glMapBuffer(GL_PIXEL_PACK_BUFFER, GL_READ_ONLY);
+ if (!check_float(map, "PBO float RGBA"))
+ pass = false;
+ glUnmapBuffer(GL_PIXEL_PACK_BUFFER);
+
+ piglit_present_results();
+
+ return pass ? PIGLIT_PASS : PIGLIT_FAIL;
+}
+
+void piglit_init(int argc, char **argv)
+{
+ piglit_require_extension("GL_ARB_pixel_buffer_object");
+ piglit_require_extension("GL_MESA_pack_invert");
+ piglit_require_extension("GL_EXT_bgra");
+}
--
1.8.5.1
More information about the Piglit
mailing list