/* * 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. */ #include "sample_common.h" #include "image_common.h" /** * @file sample_rgb.c * * Create EGL images out of ARGB8888 and XRGB8888 formatted dma buffers, set * them as external textures, set texture filters for avoiding need for other * mipmap-levels and sample the textures using a shader program. */ PIGLIT_GL_TEST_CONFIG_BEGIN config.supports_gl_es_version = 20; config.window_visual = PIGLIT_GL_VISUAL_RGBA; PIGLIT_GL_TEST_CONFIG_END static bool force_alpha_to_one = false; static int fourcc = -1; 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 }; const unsigned char expected[] = { src[ 2], src[ 1], src[ 0], force_alpha_to_one ? 255 : src[ 3], src[ 6], src[ 5], src[ 4], force_alpha_to_one ? 255 : src[ 7], src[10], src[ 9], src[ 8], force_alpha_to_one ? 255 : src[11], src[14], src[13], src[12], force_alpha_to_one ? 255 : src[15] }; enum piglit_result res; glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); res = dma_buf_create_and_sample_32bpp(2, 2, fourcc, src); if (res != PIGLIT_PASS) return res; if (!piglit_probe_image_ubyte(0, 0, 2, 2, GL_RGBA, expected)) res = PIGLIT_FAIL; piglit_present_results(); return res; } static int parse_format(const char *s) { if (strlen(s) != 4) return -1; return (int)fourcc_code(s[0], s[1], s[2], s[3]); } void piglit_init(int argc, char **argv) { unsigned i; EGLDisplay egl_dpy = eglGetCurrentDisplay(); piglit_require_egl_extension(egl_dpy, "EGL_EXT_image_dma_buf_import"); piglit_require_extension("GL_OES_EGL_image_external"); for (i = 1; i < argc; i++) { static const char fmt[] = "-fmt="; if (!strcmp(argv[i], "-alpha-one")) { force_alpha_to_one = true; continue; } if (strncmp(argv[i], fmt, sizeof(fmt) - 1)) { fprintf(stderr, "unknown argument %s\n", argv[i]); continue; } fourcc = parse_format(argv[i] + sizeof(fmt) - 1); if (fourcc == -1) { fprintf(stderr, "invalid format: %s\n", argv[i]); piglit_report_result(PIGLIT_SKIP); } } if (fourcc == -1) { fprintf(stderr, "format not specified\n"); piglit_report_result(PIGLIT_SKIP); } }