OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:programid
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/libs/hwui/
Program.h
92
typedef uint64_t
programid
;
typedef in namespace:android::uirenderer
229
programid
key() const {
230
programid
key = 0;
242
key |=
programid
(gradientType) << PROGRAM_GRADIENT_TYPE_SHIFT;
263
if (modulate) key |=
programid
(0x1) << PROGRAM_MODULATE_SHIFT;
264
if (isAA) key |=
programid
(0x1) << PROGRAM_HAS_AA_SHIFT;
265
if (hasExternalTexture) key |=
programid
(0x1) << PROGRAM_HAS_EXTERNAL_TEXTURE_SHIFT;
266
if (hasTextureTransform) key |=
programid
(0x1) << PROGRAM_HAS_TEXTURE_TRANSFORM_SHIFT;
267
if (hasGammaCorrection) key |=
programid
(0x1) << PROGRAM_HAS_GAMMA_CORRECTION;
268
if (isSimpleGradient) key |=
programid
(0x1) << PROGRAM_IS_SIMPLE_GRADIENT
[
all
...]
ProgramCache.h
51
Program* generateProgram(const ProgramDescription& description,
programid
key);
59
KeyedVector<
programid
, Program*> mCache;
ProgramCache.cpp
415
programid
key = description.key();
438
Program* ProgramCache::generateProgram(const ProgramDescription& description,
programid
key) {
Completed in 455 milliseconds