summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaura Ekstrand <laura@jlekstrand.net>2015-03-04 17:34:03 -0800
committerLaura Ekstrand <laura@jlekstrand.net>2015-03-09 16:20:44 -0700
commit17372209f711e09f174ff493d2ec647f6b9db51e (patch)
treefea5ac4080be7192c4de6bedbcdf3fc9a66dc267
parent7670c1ac14bcc39f960752ceaa1c57606ea2fde1 (diff)
arb_direct_state_access: Test for CreateBuffers.
-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/create-buffers.c76
3 files changed, 78 insertions, 0 deletions
diff --git a/tests/all.py b/tests/all.py
index 3997d67ab..76fe3b191 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4239,6 +4239,7 @@ with profile.group_manager(
g(['arb_direct_state_access-getnamedbufferparameter'], 'getnamedbufferparameter')
g(['arb_direct_state_access-getnamedbuffersubdata'], 'getnamedbuffersubdata')
g(['arb_direct_state_access-compressedtexturesubimage'], 'compressedtexturesubimage')
+ g(['arb_direct_state_access-create-buffers'], 'create-buffers')
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 c47d96d26..a9b82ebf9 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-create-buffers create-buffers.c)
piglit_add_executable (arb_direct_state_access-namedbufferstorage-persistent namedbufferstorage.c)
piglit_add_executable (arb_direct_state_access-namedbuffersubdata-vbo-sync namedbuffersubdata-vbo-sync.c)
piglit_add_executable (arb_direct_state_access-clearnamedbufferdata-invalid-internal-format clearnamedbufferdata-invalid-internal-format.c)
diff --git a/tests/spec/arb_direct_state_access/create-buffers.c b/tests/spec/arb_direct_state_access/create-buffers.c
new file mode 100644
index 000000000..babb81016
--- /dev/null
+++ b/tests/spec/arb_direct_state_access/create-buffers.c
@@ -0,0 +1,76 @@
+/*
+ * 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 create_buffers.c
+ *
+ * Tests glCreateBuffers to see if it behaves in the expected way,
+ * throwing the correct errors, etc.
+ */
+
+#include "piglit-util-gl.h"
+#include "dsa-utils.h"
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+ config.supports_gl_core_version = 32;
+
+ config.window_visual = PIGLIT_GL_VISUAL_RGBA |
+ PIGLIT_GL_VISUAL_DOUBLE;
+
+PIGLIT_GL_TEST_CONFIG_END
+
+void
+piglit_init(int argc, char **argv)
+{
+ piglit_require_extension("GL_ARB_direct_state_access");
+}
+
+enum piglit_result
+piglit_display(void)
+{
+ bool pass = true;
+ GLuint name;
+
+ /* Throw some invalid inputs at glCreateBuffers. */
+
+ /* n is negative */
+ glCreateBuffers(-1, &name);
+ SUBTEST(GL_INVALID_VALUE, pass, "n < 0");
+
+ /* name is not a valid pointer */
+ glCreateBuffers(1, NULL);
+ SUBTEST(GL_NO_ERROR, pass, "buffers = NULL");
+
+
+ /* Check if it actually generates a real buffer object */
+
+ glCreateBuffers(1, &name);
+ pass = piglit_check_gl_error(GL_NO_ERROR) && pass;
+ SUBTESTCONDITION((bool) glIsBuffer(name), pass, "IsBuffer()");
+
+
+ glDeleteBuffers(1, &name);
+
+ return pass ? PIGLIT_PASS : PIGLIT_FAIL;
+}
+