summaryrefslogtreecommitdiff
path: root/tests/spec/gl-3.2
diff options
context:
space:
mode:
authorJacob Penner <jkpenner91@gmail.com>2013-08-27 10:05:17 -0700
committerJacob Penner <jkpenner91@gmail.com>2013-09-03 14:12:53 -0700
commite3f1c34712822a8b34dfd302af54c08d0527e161 (patch)
tree80e0c2a09c5d971a12f1e89214ca8db5ddf0bd6d /tests/spec/gl-3.2
parentb576b0a685cae5f3f26a647bde0f5e5a1a825a52 (diff)
GL 3.2: Test FramebufferTexture() with buffer textures.
Reviewed-by: Paul Berry <stereotype441@gmail.com>
Diffstat (limited to 'tests/spec/gl-3.2')
-rw-r--r--tests/spec/gl-3.2/layered-rendering/CMakeLists.gl.txt1
-rw-r--r--tests/spec/gl-3.2/layered-rendering/framebuffertexture-buffer-textures.c73
2 files changed, 74 insertions, 0 deletions
diff --git a/tests/spec/gl-3.2/layered-rendering/CMakeLists.gl.txt b/tests/spec/gl-3.2/layered-rendering/CMakeLists.gl.txt
index fabad021c..89b72517b 100644
--- a/tests/spec/gl-3.2/layered-rendering/CMakeLists.gl.txt
+++ b/tests/spec/gl-3.2/layered-rendering/CMakeLists.gl.txt
@@ -11,4 +11,5 @@ link_libraries (
piglit_add_executable (gl-3.2-layered-rendering-blit blit.c)
piglit_add_executable (gl-3.2-layered-rendering-clear-color clear-color.c)
+piglit_add_executable (gl-3.2-layered-rendering-framebuffertexture-buffer-textures framebuffertexture-buffer-textures.c)
# vim: ft=cmake:
diff --git a/tests/spec/gl-3.2/layered-rendering/framebuffertexture-buffer-textures.c b/tests/spec/gl-3.2/layered-rendering/framebuffertexture-buffer-textures.c
new file mode 100644
index 000000000..c85e080fe
--- /dev/null
+++ b/tests/spec/gl-3.2/layered-rendering/framebuffertexture-buffer-textures.c
@@ -0,0 +1,73 @@
+/*
+ * 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 framebuffertexture-buffer-textures.c
+ *
+ * Section 4.4.2(Framebuffer Objects) From GL spec 3.2 core:
+ * An INVALID_OPERATION error is generated if texture is the name
+ * of a buffer texture.
+ */
+
+#include "piglit-util-gl-common.h"
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+ config.supports_gl_compat_version = 32;
+ config.supports_gl_core_version = 32;
+
+PIGLIT_GL_TEST_CONFIG_END
+
+void
+piglit_init(int argc, char **argv)
+{
+ bool pass = true;
+ GLuint fbo, buff, tex;
+
+ glGenFramebuffers(1, &fbo);
+ glBindFramebuffer(GL_FRAMEBUFFER, fbo);
+
+ glGenBuffers(1, &buff);
+ glBindBuffer(GL_TEXTURE_BUFFER, buff);
+
+ glGenTextures(1, &tex);
+ glBindTexture(GL_TEXTURE_BUFFER, tex);
+
+ glTexBuffer(GL_TEXTURE_BUFFER, GL_RGB32F, buff);
+
+ pass = piglit_check_gl_error(GL_NO_ERROR) && pass;
+
+ /* Try to attach the buffer texture to the framebuffer */
+ glFramebufferTexture(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, tex, 0);
+
+ pass = piglit_check_gl_error(GL_INVALID_OPERATION) && pass;
+
+ piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
+}
+
+enum piglit_result
+piglit_display(void)
+{
+ /* UNREACHABLE! */
+ return PIGLIT_FAIL;
+}