OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GGL_ENABLE_DITHER
(Results
1 - 4
of
4
) sorted by null
/system/core/libpixelflinger/
picker.cpp
104
p |= GGL_BUILD_NEEDS((enables &
GGL_ENABLE_DITHER
) ?1:0, P_DITHER);
pixelflinger.cpp
64
static void
ggl_enable_dither
(context_t* c, int enable);
166
case GGL_DITHER:
ggl_enable_dither
(c, en); break;
655
void
ggl_enable_dither
(context_t* c, int enable)
function in namespace:android
657
const int e = (c->state.enables &
GGL_ENABLE_DITHER
)?1:0;
659
if (enable) c->state.enables |=
GGL_ENABLE_DITHER
;
660
else c->state.enables &= ~
GGL_ENABLE_DITHER
;
buffer.cpp
168
if (c->state.enables &
GGL_ENABLE_DITHER
) {
/system/core/include/private/pixelflinger/
ggl_context.h
210
GGL_ENABLE_DITHER
= 0x00000400,
Completed in 11 milliseconds