summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaura Ekstrand <laura@jlekstrand.net>2015-01-09 17:25:28 -0800
committerLaura Ekstrand <laura@jlekstrand.net>2015-03-09 16:20:42 -0700
commit4063baa1571d964f2be46ce9b43eb01f25496255 (patch)
tree5740d0d4239054ae306143e76ac71228e9a0ebdc
parent722d158d978f4a5dca5800867162f00fcf158dfb (diff)
arb_direct_state_access: Testing NamedBufferStorage.
-rw-r--r--tests/all.py1
-rw-r--r--tests/spec/arb_direct_state_access/CMakeLists.gl.txt1
-rw-r--r--tests/spec/arb_direct_state_access/namedbufferstorage.c254
3 files changed, 256 insertions, 0 deletions
diff --git a/tests/all.py b/tests/all.py
index dcce2288c..89501d2a1 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4238,6 +4238,7 @@ with profile.group_manager(
'create-programpipelines')
g(['arb_direct_state_access-create-queries'], 'create-queries')
g(['arb_direct_state_access-texture-buffer-range'], 'texture-buffer-range')
+ g(['arb_direct_state_access-namedbufferstorage-persistent'], 'namedbufferstorage-persistent')
with profile.group_manager(
PiglitGLTest,
diff --git a/tests/spec/arb_direct_state_access/CMakeLists.gl.txt b/tests/spec/arb_direct_state_access/CMakeLists.gl.txt
index e3c81753d..a8ae726ab 100644
--- a/tests/spec/arb_direct_state_access/CMakeLists.gl.txt
+++ b/tests/spec/arb_direct_state_access/CMakeLists.gl.txt
@@ -15,6 +15,7 @@ piglit_add_executable (arb_direct_state_access-transformfeedback-bufferrange tra
piglit_add_executable (arb_direct_state_access-gettransformfeedback gettransformfeedback.c)
piglit_add_executable (arb_direct_state_access-create-renderbuffers create-renderbuffers.c)
piglit_add_executable (arb_direct_state_access-namedrenderbuffer namedrenderbuffer.c)
+piglit_add_executable (arb_direct_state_access-namedbufferstorage-persistent namedbufferstorage.c)
piglit_add_executable (arb_direct_state_access-dsa-textures dsa-textures.c dsa-utils.c)
piglit_add_executable (arb_direct_state_access-texturesubimage texturesubimage.c)
piglit_add_executable (arb_direct_state_access-bind-texture-unit bind-texture-unit.c)
diff --git a/tests/spec/arb_direct_state_access/namedbufferstorage.c b/tests/spec/arb_direct_state_access/namedbufferstorage.c
new file mode 100644
index 000000000..11880e5d7
--- /dev/null
+++ b/tests/spec/arb_direct_state_access/namedbufferstorage.c
@@ -0,0 +1,254 @@
+/*
+ * Copyright © 2014 Advanced Micro Devices, Inc.
+ * All rights reserved.
+ * Copyright 2015 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:
+ * Marek Olšák <marek.olsak@amd.com>
+ * Laura Ekstrand <laura@jlekstrand.net>
+ *
+ * Adapted to test NamedBufferStorage by Laura Ekstrand <laura@jlekstrand.net>
+ * January 2015
+ */
+
+#include "piglit-util-gl.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
+
+#define BUF_SIZE (12 * 4 * sizeof(float))
+
+void
+piglit_init(int argc, char **argv)
+{
+ piglit_require_gl_version(15);
+ piglit_require_extension("GL_ARB_buffer_storage");
+ piglit_require_extension("GL_ARB_map_buffer_range");
+ piglit_require_extension("GL_ARB_direct_state_access");
+
+ piglit_ortho_projection(piglit_width, piglit_height, GL_FALSE);
+}
+
+bool
+create_mapped_buffer(GLuint *buffer, GLfloat **map, GLboolean coherent,
+ GLboolean client_storage)
+{
+ glCreateBuffers(1, buffer);
+ glNamedBufferStorage(*buffer, BUF_SIZE, NULL,
+ GL_MAP_WRITE_BIT |
+ GL_MAP_PERSISTENT_BIT |
+ (coherent ? GL_MAP_COHERENT_BIT : 0) |
+ GL_DYNAMIC_STORAGE_BIT |
+ (client_storage ? GL_CLIENT_STORAGE_BIT : 0));
+ glBindBuffer(GL_ARRAY_BUFFER, *buffer);
+
+ piglit_check_gl_error(GL_NO_ERROR);
+
+ *map = glMapBufferRange(GL_ARRAY_BUFFER, 0, BUF_SIZE,
+ GL_MAP_WRITE_BIT |
+ GL_MAP_PERSISTENT_BIT |
+ (coherent ? GL_MAP_COHERENT_BIT : 0));
+
+ piglit_check_gl_error(GL_NO_ERROR);
+
+ if (!*map)
+ return false;
+
+ glBindBuffer(GL_ARRAY_BUFFER, 0);
+
+ return true;
+}
+
+static enum piglit_result result = PIGLIT_PASS;
+static float white[4] = {1.0, 1.0, 1.0, 0.0};
+static float array[] = {
+ 17, 13, 0,
+ 17, 18, 0,
+ 12, 13, 0,
+ 12, 18, 0,
+ 27, 13, 0,
+ 27, 18, 0,
+ 22, 13, 0,
+ 22, 18, 0,
+ 37, 13, 0,
+ 37, 18, 0,
+ 32, 13, 0,
+ 32, 18, 0,
+ 47, 13, 0,
+ 47, 18, 0,
+ 42, 13, 0,
+ 42, 18, 0
+};
+
+void
+draw_subtest(GLboolean coherent, GLboolean client_storage)
+{
+ GLuint buffer;
+ GLfloat *map;
+ bool pass = true;
+
+ if (!create_mapped_buffer(&buffer, &map, coherent, client_storage)) {
+ piglit_report_subtest_result(PIGLIT_FAIL,
+ "draw%s%s", coherent ? " coherent" : "",
+ client_storage ? " client-storage" : "");
+ result = PIGLIT_FAIL;
+ return;
+ }
+
+ glClear(GL_COLOR_BUFFER_BIT);
+ glEnableClientState(GL_VERTEX_ARRAY);
+ glBindBuffer(GL_ARRAY_BUFFER, buffer);
+ glVertexPointer(3, GL_FLOAT, 0, 0);
+ glBindBuffer(GL_ARRAY_BUFFER, 0);
+
+ memcpy(map, array, 12 * sizeof(float));
+ if (!coherent)
+ glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
+
+ glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
+
+ memcpy(map+12, array+12, 12 * sizeof(float));
+ if (!coherent)
+ glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
+
+ glDrawArrays(GL_TRIANGLE_STRIP, 4, 4);
+
+ memcpy(map+12*2, array+12*2, 12 * sizeof(float));
+ if (!coherent)
+ glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
+
+ glDrawArrays(GL_TRIANGLE_STRIP, 8, 4);
+
+ memcpy(map+12*3, array+12*3, 12 * sizeof(float));
+ if (!coherent)
+ glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
+
+ glDrawArrays(GL_TRIANGLE_STRIP, 12, 4);
+
+ piglit_check_gl_error(0);
+
+ if (!piglit_automatic)
+ piglit_present_results();
+
+ pass = piglit_probe_pixel_rgb(15, 15, white) && pass;
+ pass = piglit_probe_pixel_rgb(25, 15, white) && pass;
+ pass = piglit_probe_pixel_rgb(35, 15, white) && pass;
+ pass = piglit_probe_pixel_rgb(45, 15, white) && pass;
+
+ glDisableClientState(GL_VERTEX_ARRAY);
+
+ piglit_report_subtest_result(pass ? PIGLIT_PASS : PIGLIT_FAIL,
+ "draw%s%s", coherent ? " coherent" : "",
+ client_storage ? " client-storage" : "");
+
+ if (!pass)
+ result = PIGLIT_FAIL;
+}
+
+void
+read_subtest(GLboolean coherent, GLboolean client_storage)
+{
+ GLuint buffer;
+ GLfloat *map;
+ bool pass = true;
+
+ int i;
+ GLuint srcbuf;
+
+ if (!create_mapped_buffer(&buffer, &map, coherent, client_storage)) {
+ piglit_report_subtest_result(PIGLIT_FAIL,
+ "read%s%s", coherent ? " coherent" : "",
+ client_storage ? " client-storage" : "");
+ result = PIGLIT_FAIL;
+ return;
+ }
+
+ glClear(GL_COLOR_BUFFER_BIT);
+ glCreateBuffers(1, &srcbuf);
+ glBindBuffer(GL_COPY_READ_BUFFER, srcbuf);
+ glBufferData(GL_COPY_READ_BUFFER, BUF_SIZE, array, GL_STATIC_DRAW);
+
+ /* Copy some data to the mapped buffer and check if the CPU can see it. */
+ glBindBuffer(GL_COPY_WRITE_BUFFER, buffer);
+ glCopyBufferSubData(GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER,
+ 0, 0, BUF_SIZE);
+
+ glBindBuffer(GL_COPY_READ_BUFFER, 0);
+ glBindBuffer(GL_COPY_WRITE_BUFFER, 0);
+ glDeleteBuffers(1, &srcbuf);
+
+ if (!coherent)
+ glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
+
+ /* Wait for the GPU to flush */
+ glFinish();
+
+ for (i = 0; i < ARRAY_SIZE(array); i++) {
+ if (map[i] != array[i]) {
+ printf("Probe [%i] failed. Expected: %f Observed: %f\n",
+ i, array[i], map[i]);
+ pass = false;
+ }
+ }
+
+ piglit_report_subtest_result(pass ? PIGLIT_PASS : PIGLIT_FAIL,
+ "read%s%s", coherent ? " coherent" : "",
+ client_storage ? " client-storage" : "");
+
+ if (!pass)
+ result = PIGLIT_FAIL;
+}
+
+enum piglit_result
+piglit_display(void)
+{
+ /* !Coherent draw subtests: require MemoryBarrier */
+ if (piglit_is_extension_supported("GL_ARB_shader_image_load_store")) {
+ draw_subtest(false, false);
+ draw_subtest(false, true);
+ }
+
+ /* Coherent draw subtests */
+ draw_subtest(true, false);
+ draw_subtest(true, true);
+
+ /* Need copy buffer extension for read tests */
+ if (piglit_is_extension_supported("GL_ARB_copy_buffer")) {
+
+ /* !Coherent read subtests: require MemoryBarrier */
+ if (piglit_is_extension_supported(
+ "GL_ARB_shader_image_load_store")) {
+ read_subtest(false, false);
+ read_subtest(false, true);
+ }
+
+ /* Coherent read subtests */
+ read_subtest(true, false);
+ read_subtest(true, true);
+ }
+
+ return result;
+}