Home | History | Annotate | Download | only in egl

Lines Matching defs:dpy

66 bool checkExtensions (const tcu::egl::Display& dpy, const char** first, const char** last, vector<const char*>& unsupported)
69 dpy.getExtensions(extensions);
98 void checkExtensions (const tcu::egl::Display& dpy, const char** first, const char** last)
101 if (!checkExtensions(dpy, first, last, unsupported))
106 void checkExtensions (const tcu::egl::Display& dpy, const char* (&extensions)[N])
108 checkExtensions(dpy, &extensions[0], &extensions[N]);
210 EGLDisplay dpy = m_eglTestCtx.getDisplay().getEGLDisplay();
224 CHECK_EXT_CALL_RET(eglCreateImageKHR(dpy, (EGLContext)-1, EGL_NONE, 0, DE_NULL),
228 CHECK_EXT_CALL_RET(eglCreateImageKHR(dpy, EGL_NO_CONTEXT, (EGLenum)-1, 0, DE_NULL),
246 tcu::egl::Display& dpy = eglTestCtx.getDisplay();
247 EGLint surfaceTypeBits = dpy.getConfigAttrib(m_config, EGL_SURFACE_TYPE);
258 m_surface = new tcu::egl::PbufferSurface(dpy, m_config, pbufferAttrs);
262 m_window = eglTestCtx.createNativeWindow(dpy.getEGLDisplay(), m_config, DE_NULL, width, height, eglu::parseWindowVisibility(eglTestCtx.getTestContext().getCommandLine()));
263 m_surface = new tcu::egl::WindowSurface(dpy, eglu::createWindowSurface(eglTestCtx.getNativeDisplay(), *m_window, dpy.getEGLDisplay(), m_config, DE_NULL));
267 m_pixmap = eglTestCtx.createNativePixmap(dpy.getEGLDisplay(), m_config, DE_NULL, width, height);
268 m_surface = new tcu::egl::PixmapSurface(dpy, eglu::createPixmapSurface(eglTestCtx.getNativeDisplay(), *m_pixmap, dpy.getEGLDisplay(), m_config, DE_NULL));
332 static EGLConfig getConfigById (const tcu::egl::Display& dpy, EGLint configId)
336 dpy.chooseConfig(attributes, configs);