[Piglit] [PATCH] GL3.3: Test that with target of TEXTURE_RECTANGLE, TEXTURE_BASE_LEVEL of non-zero results in INVALID_VALUE.

Nicholas Mack nichmack at gmail.com
Mon Nov 18 14:24:34 PST 2013


---
 tests/all.tests                              |  1 +
 tests/spec/gl-3.3/CMakeLists.gl.txt          |  1 +
 tests/spec/gl-3.3/texture-base-level-error.c | 64 ++++++++++++++++++++++++++++
 3 files changed, 66 insertions(+)
 create mode 100644 tests/spec/gl-3.3/texture-base-level-error.c

diff --git a/tests/all.tests b/tests/all.tests
index e9a579c..ec8cf31 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -770,6 +770,7 @@ spec['!OpenGL/get-active-attrib-returns-all-inputs'] = concurrent_test('gl-get-a
 spec['!OpenGL 3.2/texture-border-deprecated'] = concurrent_test('gl-3.2-texture-border-deprecated')
 
 spec['!OpenGL 3.3/minmax'] = concurrent_test('gl-3.3-minmax')
+spec['!OpenGL 3.3/texture-base-level-error'] = concurrent_test('gl-3.3-texture-base-level-error')
 spec['!OpenGL 3.3/required-renderbuffer-attachment-formats'] = concurrent_test('gl-3.0-required-renderbuffer-attachment-formats 33')
 spec['!OpenGL 3.3/required-sized-texture-formats'] = concurrent_test('gl-3.0-required-sized-texture-formats 33')
 spec['!OpenGL 3.3/required-texture-attachment-formats'] = concurrent_test('gl-3.0-required-texture-attachment-formats 33')
diff --git a/tests/spec/gl-3.3/CMakeLists.gl.txt b/tests/spec/gl-3.3/CMakeLists.gl.txt
index b58b541..7143680 100644
--- a/tests/spec/gl-3.3/CMakeLists.gl.txt
+++ b/tests/spec/gl-3.3/CMakeLists.gl.txt
@@ -10,5 +10,6 @@ link_libraries (
 )
 
 piglit_add_executable (gl-3.3-minmax minmax.c)
+piglit_add_executable (gl-3.3-texture-base-level-error texture-base-level-error.c)
 
 # vim: ft=cmake:
diff --git a/tests/spec/gl-3.3/texture-base-level-error.c b/tests/spec/gl-3.3/texture-base-level-error.c
new file mode 100644
index 0000000..86180c0
--- /dev/null
+++ b/tests/spec/gl-3.3/texture-base-level-error.c
@@ -0,0 +1,64 @@
+/**
+ * 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 when setting texture parameters, a TEXTURE_BASE_LEVEL of non-zero
+ * results in INVALID_VALUE when target is TEXTURE_RECTANGLE.
+ *
+ * Section 3.8.8(Texture Parameters) of OpenGL 3.3 Core says:
+ * "When target is TEXTURE_RECTANGLE, certain texture parameter values may
+ *  not be specified. In this case, the error INVALID_ENUM is generated if the
+ *  TEXTURE_WRAP_S, TEXTURE_WRAP_T, or TEXTURE_WRAP_R parameter is set
+ *  to REPEAT or MIRRORED_REPEAT. The error INVALID_ENUM is generated if
+ *  TEXTURE_MIN_FILTER is set to a value other than NEAREST or LINEAR (no
+ *  mipmap filtering is permitted). The error INVALID_VALUE is generated if
+ *  TEXTURE_BASE_LEVEL is set to any value other than zero."
+ *
+ */
+
+#include "piglit-util-gl-common.h"
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+	config.supports_gl_core_version = 33;
+	config.supports_gl_compat_version = 33;
+
+PIGLIT_GL_TEST_CONFIG_END
+
+void
+piglit_init(int argc, char **argv)
+{
+	bool pass = true;
+
+	glTexParameteri(GL_TEXTURE_RECTANGLE, GL_TEXTURE_BASE_LEVEL, 37);
+	pass = piglit_check_gl_error(GL_INVALID_VALUE) && 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