Home
last modified time | relevance | path

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

/external/swiftshader/src/OpenGL/libEGL/
DSurface.cpp165 void Surface::setSwapBehavior(EGLenum swapBehavior) in setSwapBehavior() argument
167 this->swapBehavior = swapBehavior; in setSwapBehavior()
224 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.c350 EGLint swapBehavior = EGL_BUFFER_DESTROYED; in _eglInitSurface() local
355 swapBehavior = EGL_BUFFER_PRESERVED; in _eglInitSurface()
360 swapBehavior = EGL_BUFFER_DESTROYED; in _eglInitSurface()
398 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()