[Piglit] [v7 12/12] tests: spec: EXT_image_dma_buf_import sample argb without miptree

Topi Pohjolainen topi.pohjolainen at intel.com
Tue May 28 02:51:48 PDT 2013


Tests that one can sample the given buffer without other mipmap
levels by setting texture filtering accordingly.

v2:
   - compile only on platforms that have drm (Eric)
   - use standard drm definitions for fourcc instead of duplicated
     local (Daniel, Eric)
   - removed irrelevant quote of the spec (Eric)
   - use helper variables for width, height and cpp instead
     of repeating the magic numbers over and over again (Eric)
   - used the same refactored common logic as the mipmap ARGB test

v3 (Eric):
   - use properly linked egl-extension calls

Signed-off-by: Topi Pohjolainen <topi.pohjolainen at intel.com>
---
 .../ext_image_dma_buf_import/CMakeLists.gles2.txt  |  1 +
 .../sample_argb8888_level_zero_only.c              | 68 ++++++++++++++++++++++
 2 files changed, 69 insertions(+)
 create mode 100644 tests/spec/ext_image_dma_buf_import/sample_argb8888_level_zero_only.c

diff --git a/tests/spec/ext_image_dma_buf_import/CMakeLists.gles2.txt b/tests/spec/ext_image_dma_buf_import/CMakeLists.gles2.txt
index 5fc6031..f0141b2 100644
--- a/tests/spec/ext_image_dma_buf_import/CMakeLists.gles2.txt
+++ b/tests/spec/ext_image_dma_buf_import/CMakeLists.gles2.txt
@@ -19,6 +19,7 @@ if(LIBDRM_FOUND)
 
 	piglit_add_executable(ext_image_dma_buf_import-sample_argb8888 sample_argb8888.c sample_common.c image_common.c)
 	piglit_add_executable(ext_image_dma_buf_import-sample_xrgb8888 sample_xrgb8888.c sample_common.c image_common.c)
+	piglit_add_executable(ext_image_dma_buf_import-sample_argb8888_level_zero_only sample_argb8888_level_zero_only.c sample_common.c image_common.c)
 endif(LIBDRM_FOUND)
 
 # vim: ft=cmake:
diff --git a/tests/spec/ext_image_dma_buf_import/sample_argb8888_level_zero_only.c b/tests/spec/ext_image_dma_buf_import/sample_argb8888_level_zero_only.c
new file mode 100644
index 0000000..08df3ec
--- /dev/null
+++ b/tests/spec/ext_image_dma_buf_import/sample_argb8888_level_zero_only.c
@@ -0,0 +1,68 @@
+/*
+ * 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.
+ */
+
+#define GL_GLEXT_PROTOTYPES 1
+#include "piglit-util-egl.h"
+#define EGL_EGLEXT_PROTOTYPES 1
+#include <EGL/eglext.h>
+#include <unistd.h>
+#include <drm_fourcc.h>
+#include "sample_common.h"
+#include "image_common.h"
+
+/**
+ * @file sample_argb8888_level_zero_only.c
+ *
+ * Create EGL image out of ARGB8888 formatted dma buffer, set is as level
+ * zero, set texture filters for avoiding need for other mipmap-levels and
+ * sample it using a shader program.
+ */
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+	config.supports_gl_es_version = 20;
+
+PIGLIT_GL_TEST_CONFIG_END
+
+enum piglit_result
+piglit_display(void)
+{
+	const unsigned char src[] = {
+		10, 20, 30, 40, 50, 60, 70, 80,
+		11, 22, 33, 44, 55, 66, 77, 88 };
+	enum piglit_result res = dma_buf_create_and_sample_32bpp(
+					2, 2, 4, DRM_FORMAT_ARGB8888, src,
+					false);
+
+	if (res != PIGLIT_PASS)
+		return res;
+
+	return probe_rect_argb(2, 2, src, false);
+}
+
+void
+piglit_init(int argc, char **argv)
+{
+	piglit_require_extension("GL_OES_EGL_image");
+	piglit_require_egl_extension("EGL_EXT_image_dma_buf_import");
+}
-- 
1.8.1.2



More information about the Piglit mailing list