Lines Matching full:program
405 PROGRAM_LOGD("Clearing program cache");
414 Program* ProgramCache::get(const ProgramDescription& description) {
417 // program for A8, unmodulated, texture w/o shader (black text/path textures) is equivalent
418 // to standard texture program (bitmaps, patches). Consider them equivalent.
423 Program* program = NULL;
425 description.log("Could not find program");
426 program = generateProgram(description, key);
427 mCache.add(key, program);
429 program = mCache.valueAt(index);
431 return program;
435 // Program generation
438 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {
442 return new Program(description, vertexShader.string(), fragmentShader.string());