HomeSort by relevance Sort by last modified time
    Searched defs:swapBehavior (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/egl/main/
eglsurface.c 265 EGLint swapBehavior = EGL_BUFFER_DESTROYED;
270 swapBehavior = EGL_BUFFER_PRESERVED;
275 swapBehavior = EGL_BUFFER_DESTROYED;
312 surf->SwapBehavior = swapBehavior;
373 *value = surface->SwapBehavior;
476 surface->SwapBehavior = value;
  /external/swiftshader/src/OpenGL/libEGL/
Surface.hpp 43 void setSwapBehavior(EGLenum swapBehavior);
91 EGLenum swapBehavior; // Buffer swap behavior
  /external/deqp/modules/egl/
teglQuerySurfaceTests.cpp 201 const EGLint swapBehavior = eglu::querySurfaceInt(egl, display, surface, EGL_SWAP_BEHAVIOR);
203 if (swapBehavior != EGL_BUFFER_DESTROYED && swapBehavior != EGL_BUFFER_PRESERVED)
205 log << TestLog::Message << " Fail, invalid swap behavior value " << swapBehavior << TestLog::EndMessage;
209 if (swapBehavior == EGL_BUFFER_PRESERVED && !(info.surfaceType & EGL_SWAP_BEHAVIOR_PRESERVED_BIT))
  /frameworks/base/libs/hwui/renderthread/
EglManager.cpp 118 mSwapBehavior = SwapBehavior::BufferAge;
120 mSwapBehavior = SwapBehavior::Preserved;
178 EGLint swapBehavior = (mSwapBehavior == SwapBehavior::Preserved)
189 EGL_SURFACE_TYPE, EGL_WINDOW_BIT | swapBehavior,
196 if (mSwapBehavior == SwapBehavior::Preserved) {
199 mSwapBehavior = SwapBehavior::Discard;
219 EGL_SURFACE_TYPE, EGL_WINDOW_BIT | swapBehavior,
311 if (mSwapBehavior != SwapBehavior::Preserved) {
372 case SwapBehavior::Discard
    [all...]

Completed in 182 milliseconds