OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:swapBehavior
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/libs/hwui/renderthread/
EglManager.cpp
119
mSwapBehavior =
SwapBehavior
::BufferAge;
121
mSwapBehavior =
SwapBehavior
::Preserved;
149
EGLint
swapBehavior
= (mSwapBehavior ==
SwapBehavior
::Preserved)
160
EGL_SURFACE_TYPE, EGL_WINDOW_BIT |
swapBehavior
,
167
if (mSwapBehavior ==
SwapBehavior
::Preserved) {
170
mSwapBehavior =
SwapBehavior
::Discard;
232
if (mSwapBehavior !=
SwapBehavior
::Preserved) {
289
case
SwapBehavior
::Discard:
291
case
SwapBehavior
::Preserved
[
all
...]
RenderProxy.h
75
ANDROID_API void setSwapBehavior(
SwapBehavior
swapBehavior
);
RenderProxy.cpp
99
CREATE_BRIDGE2(setSwapBehavior, CanvasContext* context,
SwapBehavior
swapBehavior
) {
100
args->context->setSwapBehavior(args->
swapBehavior
);
104
void RenderProxy::setSwapBehavior(
SwapBehavior
swapBehavior
) {
107
args->
swapBehavior
=
swapBehavior
;
CanvasContext.h
65
enum
SwapBehavior
{
80
void setSwapBehavior(
SwapBehavior
swapBehavior
);
199
SwapBehavior
mSwapBehavior = kSwap_default;
CanvasContext.cpp
123
void CanvasContext::setSwapBehavior(
SwapBehavior
swapBehavior
) {
124
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 106 milliseconds