Home
last modified time | relevance | path

Searched refs:swapBehavior (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/OpenGL/libEGL/
DSurface.cpp162 void Surface::setSwapBehavior(EGLenum swapBehavior) in setSwapBehavior() argument
164 this->swapBehavior = swapBehavior; in setSwapBehavior()
221 return swapBehavior; in getSwapBehavior()
DSurface.hpp45 void setSwapBehavior(EGLenum swapBehavior);
99 …EGLenum swapBehavior = EGL_BUFFER_PRESERVED; // Buffer swap behavior (initial value chosen by … member in egl::Surface
/external/mesa3d/src/egl/main/
Deglsurface.c249 EGLint swapBehavior = EGL_BUFFER_DESTROYED; in _eglInitSurface() local
254 swapBehavior = EGL_BUFFER_PRESERVED; in _eglInitSurface()
259 swapBehavior = EGL_BUFFER_DESTROYED; in _eglInitSurface()
295 surf->SwapBehavior = swapBehavior; in _eglInitSurface()
/external/deqp/modules/egl/
DteglQuerySurfaceTests.cpp201 const EGLint swapBehavior = eglu::querySurfaceInt(egl, display, surface, EGL_SWAP_BEHAVIOR); in checkCommonAttributes() local
203 if (swapBehavior != EGL_BUFFER_DESTROYED && swapBehavior != EGL_BUFFER_PRESERVED) in checkCommonAttributes()
205 …log << TestLog::Message << " Fail, invalid swap behavior value " << swapBehavior << TestLog::En… in checkCommonAttributes()
209 if (swapBehavior == EGL_BUFFER_PRESERVED && !(info.surfaceType & EGL_SWAP_BEHAVIOR_PRESERVED_BIT)) in checkCommonAttributes()