[Piglit] [v6 11/12] tests: spec: EXT_image_dma_buf_import sample xrgb with miptree

Topi Pohjolainen topi.pohjolainen at intel.com
Thu May 16 02:51:24 PDT 2013


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

Signed-off-by: Topi Pohjolainen <topi.pohjolainen at intel.com>
---
 .../ext_image_dma_buf_import/CMakeLists.gles2.txt  |  1 +
 .../ext_image_dma_buf_import/sample_xrgb8888.c     | 67 ++++++++++++++++++++++
 2 files changed, 68 insertions(+)
 create mode 100644 tests/spec/ext_image_dma_buf_import/sample_xrgb8888.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 126f469..ce69bb5 100644
--- a/tests/spec/ext_image_dma_buf_import/CMakeLists.gles2.txt
+++ b/tests/spec/ext_image_dma_buf_import/CMakeLists.gles2.txt
@@ -18,6 +18,7 @@ if(LIBDRM_FOUND)
 	)
 
 	piglit_add_executable(ext_image_dma_buf_import-sample_argb8888 sample_argb8888.c sample_common.c)
+	piglit_add_executable(ext_image_dma_buf_import-sample_xrgb8888 sample_xrgb8888.c sample_common.c)
 endif(LIBDRM_FOUND)
 
 # vim: ft=cmake:
diff --git a/tests/spec/ext_image_dma_buf_import/sample_xrgb8888.c b/tests/spec/ext_image_dma_buf_import/sample_xrgb8888.c
new file mode 100644
index 0000000..1bc86f2
--- /dev/null
+++ b/tests/spec/ext_image_dma_buf_import/sample_xrgb8888.c
@@ -0,0 +1,67 @@
+/*
+ * 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"
+
+/**
+ * @file sample_xrgb8888.c
+ *
+ * Create EGL image out of XRGB8888 formatted dma buffer, bind as texture and
+ * sample it using a shader program. Here one wants to see alpha channels set
+ * to 1.0 regardless of the source.
+ */
+
+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_XRGB8888, src,
+					true);
+
+	if (res != PIGLIT_PASS)
+		return res;
+
+	return probe_rect_argb(2, 2, src, true);
+}
+
+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