OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:programid
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/libs/hwui/
ProgramCache.h
87
typedef uint64_t
programid
;
typedef in namespace:android::uirenderer
213
programid
key() const {
214
programid
key = 0;
226
key |=
programid
(gradientType) << PROGRAM_GRADIENT_TYPE_SHIFT;
247
if (modulate) key |=
programid
(0x1) << PROGRAM_MODULATE_SHIFT;
248
if (isPoint) key |=
programid
(0x1) << PROGRAM_IS_POINT_SHIFT;
249
if (isAA) key |=
programid
(0x1) << PROGRAM_HAS_AA_SHIFT;
250
if (hasExternalTexture) key |=
programid
(0x1) << PROGRAM_HAS_EXTERNAL_TEXTURE_SHIFT;
251
if (hasTextureTransform) key |=
programid
(0x1) << PROGRAM_HAS_TEXTURE_TRANSFORM_SHIFT;
260
programid
k = key()
[
all
...]
ProgramCache.cpp
370
programid
key = description.key();
387
Program* ProgramCache::generateProgram(const ProgramDescription& description,
programid
key) {
Completed in 157 milliseconds