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

  /frameworks/base/libs/hwui/renderthread/
EglManager.cpp 114 EGLint swapBehavior = mCanSetPreserveBuffer ? EGL_SWAP_BEHAVIOR_PRESERVED_BIT : 0;
124 EGL_SURFACE_TYPE, EGL_WINDOW_BIT | swapBehavior,
328 EGLint swapBehavior;
329 if (eglQuerySurface(mEglDisplay, surface, EGL_SWAP_BEHAVIOR, &swapBehavior)) {
330 preserved = (swapBehavior == EGL_BUFFER_PRESERVED);
CanvasContext.h 53 enum SwapBehavior {
68 void setSwapBehavior(SwapBehavior swapBehavior);
132 SwapBehavior mSwapBehavior = kSwap_default;
RenderProxy.h 66 ANDROID_API void setSwapBehavior(SwapBehavior swapBehavior);
RenderProxy.cpp 101 CREATE_BRIDGE2(setSwapBehavior, CanvasContext* context, SwapBehavior swapBehavior) {
102 args->context->setSwapBehavior(args->swapBehavior);
106 void RenderProxy::setSwapBehavior(SwapBehavior swapBehavior) {
109 args->swapBehavior = swapBehavior;
CanvasContext.cpp 109 void CanvasContext::setSwapBehavior(SwapBehavior swapBehavior) {
110 mSwapBehavior = swapBehavior;
  /external/mesa3d/src/egl/main/
eglsurface.c 284 EGLint swapBehavior = EGL_BUFFER_PRESERVED;
290 swapBehavior = EGL_BUFFER_DESTROYED;
332 surf->SwapBehavior = swapBehavior;
386 *value = surface->SwapBehavior;
472 surface->SwapBehavior = value;
  /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))

Completed in 319 milliseconds