Home
last modified time | relevance | path

Searched refs:querySurfaceInt (Results 1 – 8 of 8) sorted by relevance

/external/deqp/modules/egl/
DteglQuerySurfaceTests.cpp67 …logSurfaceAttribute(log, attributes[ndx], eglu::querySurfaceInt(egl, display, surface, attributes[… in logSurfaceAttributes()
127 const EGLint id = eglu::querySurfaceInt(egl, display, surface, EGL_CONFIG_ID); in checkCommonAttributes()
138 const EGLint width = eglu::querySurfaceInt(egl, display, surface, EGL_WIDTH); in checkCommonAttributes()
139 const EGLint height = eglu::querySurfaceInt(egl, display, surface, EGL_HEIGHT); in checkCommonAttributes()
150 const EGLint hRes = eglu::querySurfaceInt(egl, display, surface, EGL_HORIZONTAL_RESOLUTION); in checkCommonAttributes()
151 const EGLint vRes = eglu::querySurfaceInt(egl, display, surface, EGL_VERTICAL_RESOLUTION); in checkCommonAttributes()
162 const EGLint pixelRatio = eglu::querySurfaceInt(egl, display, surface, EGL_PIXEL_ASPECT_RATIO); in checkCommonAttributes()
166 …log << TestLog::Message << " Fail, invalid pixel aspect ratio " << eglu::querySurfaceInt(egl, d… in checkCommonAttributes()
173 const EGLint renderBuffer = eglu::querySurfaceInt(egl, display, surface, EGL_RENDER_BUFFER); in checkCommonAttributes()
184 …const EGLint multisampleResolve = eglu::querySurfaceInt(egl, display, surface, EGL_MULTISAMPLE_RES… in checkCommonAttributes()
[all …]
DteglSwapBuffersWithDamageTests.cpp401 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
402 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
481 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
482 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
569 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
570 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
DteglPartialUpdateTests.cpp492 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
493 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
683 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
684 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
745 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
746 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
DteglRenderTests.cpp734 const int width = eglu::querySurfaceInt(egl, display, surface, EGL_WIDTH); in executeForContexts()
735 const int height = eglu::querySurfaceInt(egl, display, surface, EGL_HEIGHT); in executeForContexts()
936 const int width = eglu::querySurfaceInt(egl, display, surface, EGL_WIDTH); in executeForContexts()
937 const int height = eglu::querySurfaceInt(egl, display, surface, EGL_HEIGHT); in executeForContexts()
DteglPreservingSwapTests.cpp424 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
425 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
DteglBufferAgeTests.cpp492 const int width = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_WIDTH); in iterate()
493 const int height = eglu::querySurfaceInt(egl, m_eglDisplay, m_eglSurface, EGL_HEIGHT); in iterate()
/external/deqp/framework/egl/
DegluUtil.cpp211 EGLint querySurfaceInt (const Library& egl, EGLDisplay display, EGLSurface surface, EGLint attrib) in querySurfaceInt() function
220 const EGLint width = querySurfaceInt(egl, display, surface, EGL_WIDTH); in getSurfaceSize()
221 const EGLint height = querySurfaceInt(egl, display, surface, EGL_HEIGHT); in getSurfaceSize()
227 const EGLint hRes = querySurfaceInt(egl, display, surface, EGL_HORIZONTAL_RESOLUTION); in getSurfaceResolution()
228 const EGLint vRes = querySurfaceInt(egl, display, surface, EGL_VERTICAL_RESOLUTION); in getSurfaceResolution()
DegluUtil.hpp74 eglw::EGLint querySurfaceInt (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLS…