Home | History | Annotate | Download | only in egl

Lines Matching defs:SurfaceType

53 	enum SurfaceType
59 NegativePartialUpdateTest (EglTestContext& eglTestCtx, bool preserveBuffer, SurfaceType surfaceType, const char* name, const char* description);
72 SurfaceType m_surfaceType;
82 return (c.surfaceType() & EGL_WINDOW_BIT) == EGL_WINDOW_BIT;
87 return (c.surfaceType() & EGL_PBUFFER_BIT) == EGL_PBUFFER_BIT;
97 return (c.surfaceType() & EGL_SWAP_BEHAVIOR_PRESERVED_BIT) == EGL_SWAP_BEHAVIOR_PRESERVED_BIT;
100 EGLConfig getEGLConfig (const Library& egl, EGLDisplay eglDisplay, NegativePartialUpdateTest::SurfaceType surfaceType, bool preserveBuffer)
103 if (surfaceType == NegativePartialUpdateTest::SURFACETYPE_WINDOW)
105 else if (surfaceType == NegativePartialUpdateTest::SURFACETYPE_PBUFFER)
108 DE_FATAL("Invalid surfaceType");
132 NegativePartialUpdateTest::NegativePartialUpdateTest (EglTestContext& eglTestCtx, bool preserveBuffer, SurfaceType surfaceType, const char* name, const char* description)
135 , m_surfaceType (surfaceType)