Lines Matching defs:image
21 * \brief EGL image tests.
263 const imageType image = (egl.*createImageFunc)(dpy, context, source, 0, DE_NULL);
267 checkCallReturn(m_eglTestCtx, call.str().c_str(), image, noImageVal, expectError);
432 const EGLImageKHR image = m_source->createImage(egl, dpy, eglContext, clientBuffer->get());
434 if (image == EGL_NO_IMAGE_KHR)
442 // Destroy image
443 CHECK_EXT_CALL_RET(egl.destroyImageKHR(context.getEglDisplay(), image), (EGLBoolean)EGL_TRUE, EGL_SUCCESS);
509 // Create EGL image
511 EGLImageKHR image = CHECK_EXT_CALL_ERR(egl.createImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_TEXTURE_2D_KHR, (EGLClientBuffer)(deUintptr)srcTex, attribs), EGL_SUCCESS);
512 if (image == EGL_NO_IMAGE_KHR)
527 GLU_CHECK_CALL(glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, (GLeglImageOES)image));
538 GLU_CHECK_CALL(glEGLImageTargetRenderbufferStorageOES(GL_RENDERBUFFER, (GLeglImageOES)image));
542 // Destroy image
543 CHECK_EXT_CALL_RET(egl.destroyImageKHR(context.getEglDisplay(), image), (EGLBoolean)EGL_TRUE, EGL_SUCCESS);
623 : TestCaseGroup(eglTestCtx, "image", "EGLImage Tests")