HomeSort by relevance Sort by last modified time
    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
225 programid key() const {
226 programid key = 0;
238 key |= programid(gradientType) << PROGRAM_GRADIENT_TYPE_SHIFT;
256 if (modulate) key |= programid(0x1) << PROGRAM_MODULATE_SHIFT;
257 if (hasVertexAlpha) key |= programid(0x1) << PROGRAM_HAS_VERTEX_ALPHA_SHIFT;
258 if (useShadowAlphaInterp) key |= programid(0x1) << PROGRAM_USE_SHADOW_ALPHA_INTERP_SHIFT;
259 if (hasExternalTexture) key |= programid(0x1) << PROGRAM_HAS_EXTERNAL_TEXTURE_SHIFT;
260 if (hasTextureTransform) key |= programid(0x1) << PROGRAM_HAS_TEXTURE_TRANSFORM_SHIFT;
261 if (isSimpleGradient) key |= programid(0x1) << PROGRAM_IS_SIMPLE_GRADIENT
    [all...]
ProgramCache.h 51 Program* generateProgram(const ProgramDescription& description, programid key);
59 std::map<programid, std::unique_ptr<Program>> mCache;
ProgramCache.cpp 405 programid key = description.key();
428 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {

Completed in 388 milliseconds