OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ggl_enable_logic_op
(Results
1 - 4
of
4
) sorted by null
/system/core/libpixelflinger/
pixelflinger.cpp
63
static void
ggl_enable_logic_op
(context_t* c, int enable);
165
case GGL_COLOR_LOGIC_OP:
ggl_enable_logic_op
(c, en); break;
645
void
ggl_enable_logic_op
(context_t* c, int enable)
function in namespace:android
647
const int e = (c->state.enables &
GGL_ENABLE_LOGIC_OP
)?1:0;
649
if (enable) c->state.enables |=
GGL_ENABLE_LOGIC_OP
;
650
else c->state.enables &= ~
GGL_ENABLE_LOGIC_OP
;
picker.cpp
108
if (enables &
GGL_ENABLE_LOGIC_OP
) {
buffer.cpp
201
(c->state.enables &
GGL_ENABLE_LOGIC_OP
)) {
209
if (c->state.enables &
GGL_ENABLE_LOGIC_OP
) {
/system/core/libpixelflinger/include/private/pixelflinger/
ggl_context.h
223
GGL_ENABLE_LOGIC_OP
= 0x00000008,
Completed in 207 milliseconds