Home | History | Annotate | Download | only in hwui

Lines Matching defs:program

425     PROGRAM_LOGD("Clearing program cache");
434 Program* ProgramCache::get(const ProgramDescription& description) {
437 // program for A8, unmodulated, texture w/o shader (black text/path textures) is equivalent
438 // to standard texture program (bitmaps, patches). Consider them equivalent.
443 Program* program = NULL;
445 description.log("Could not find program");
446 program = generateProgram(description, key);
447 mCache.add(key, program);
449 program = mCache.valueAt(index);
451 return program;
455 // Program generation
458 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {
462 return new Program(description, vertexShader.string(), fragmentShader.string());