[Piglit] [PATCH 1/2 v2] Test that VertexAttribP*() must use one of the appropriate types.

Nicholas Mack nichmack at gmail.com
Mon Nov 25 11:18:18 PST 2013


v2: change context
---
 .../CMakeLists.gl.txt                              |  1 +
 .../vertex-attrib-p-types.c                        | 84 ++++++++++++++++++++++
 2 files changed, 85 insertions(+)
 create mode 100644 tests/spec/arb_vertex_type_2_10_10_10_rev/vertex-attrib-p-types.c

diff --git a/tests/spec/arb_vertex_type_2_10_10_10_rev/CMakeLists.gl.txt b/tests/spec/arb_vertex_type_2_10_10_10_rev/CMakeLists.gl.txt
index 2ca905b..9154c26 100644
--- a/tests/spec/arb_vertex_type_2_10_10_10_rev/CMakeLists.gl.txt
+++ b/tests/spec/arb_vertex_type_2_10_10_10_rev/CMakeLists.gl.txt
@@ -10,5 +10,6 @@ link_libraries (
 )
 
 piglit_add_executable (draw-vertices-2101010 draw-vertices-2101010.c)
+piglit_add_executable (gl-3.3-vertex-attrib-p-types vertex-attrib-p-types.c)
 
 # vim: ft=cmake:
diff --git a/tests/spec/arb_vertex_type_2_10_10_10_rev/vertex-attrib-p-types.c b/tests/spec/arb_vertex_type_2_10_10_10_rev/vertex-attrib-p-types.c
new file mode 100644
index 0000000..f10304f
--- /dev/null
+++ b/tests/spec/arb_vertex_type_2_10_10_10_rev/vertex-attrib-p-types.c
@@ -0,0 +1,84 @@
+/* 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.
+ */
+
+/**
+ * Test that VertexAttribP*() must use types INT_2_10_10_10_REV or
+ * UNSIGNED_INT_2_10_10_10_REV
+ *
+ * Section 2.7(Vertex Specification) of GL3.3 core spec says:
+ * "The type parameter must be INT_2_10_10_10_REV or
+ *  UNSIGNED_INT_2_10_10_10_REV, specifying signed or unsigned data
+ *  respectively."
+ */
+
+#include "piglit-util-gl-common.h"
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+	config.supports_gl_core_version = 31;
+	config.supports_gl_compat_version = 20;
+
+PIGLIT_GL_TEST_CONFIG_END
+
+void
+piglit_init(int argc, char **argv)
+{
+	bool pass = true;
+	int i;
+	GLuint x = 21;
+	GLenum valid_types[] = {
+		GL_UNSIGNED_INT_2_10_10_10_REV,
+		GL_INT_2_10_10_10_REV
+	};
+	GLenum invalid_types[] = {
+		GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, GL_HALF_FLOAT, GL_DOUBLE,
+		GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, GL_UNSIGNED_INT
+	};
+
+	if(piglit_get_gl_version() < 33)
+		piglit_require_extension("ARB_vertex_type_2_10_10_10_rev");
+
+	for (i = 0; i < ARRAY_SIZE(valid_types); i++) {
+		glVertexAttribP1ui(0, valid_types[i], true, x);
+		pass = piglit_check_gl_error(GL_NO_ERROR) && pass;
+
+		glVertexAttribP1uiv(0, valid_types[i], true, &x);
+		pass = piglit_check_gl_error(GL_NO_ERROR) && pass;
+	}
+
+	for (i = 0; i < ARRAY_SIZE(invalid_types); i++) {
+		glVertexAttribP1ui(0, invalid_types[i], true, x);
+		pass = piglit_check_gl_error(GL_INVALID_ENUM) && pass;
+
+		glVertexAttribP1uiv(0, invalid_types[i], true, &x);
+		pass = piglit_check_gl_error(GL_INVALID_ENUM) && pass;
+	}
+
+	piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
+}
+
+enum piglit_result
+piglit_display(void)
+{
+	/* UNREACHED */
+	return PIGLIT_FAIL;
+}
-- 
1.8.3.1



More information about the Piglit mailing list