OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:statebits
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/gpu/
GrDrawState.h
718
enum
StateBits
{
761
* @param
stateBits
bitfield of
StateBits
specifying the states to enable
763
void enableState(uint32_t
stateBits
) {
764
fCommon.fFlagBits |=
stateBits
;
770
* @param
stateBits
bitfield of
StateBits
specifying the states to disable
772
void disableState(uint32_t
stateBits
) {
773
fCommon.fFlagBits &= ~(
stateBits
);
777
* Enable or disable
stateBits
based on a boolean
[
all
...]
/external/skia/src/gpu/
GrDrawState.h
718
enum
StateBits
{
761
* @param
stateBits
bitfield of
StateBits
specifying the states to enable
763
void enableState(uint32_t
stateBits
) {
764
fCommon.fFlagBits |=
stateBits
;
770
* @param
stateBits
bitfield of
StateBits
specifying the states to disable
772
void disableState(uint32_t
stateBits
) {
773
fCommon.fFlagBits &= ~(
stateBits
);
777
* Enable or disable
stateBits
based on a boolean
[
all
...]
Completed in 2236 milliseconds