Lines Matching refs:Program
400 PROGRAM_LOGD("Clearing program cache");
404 Program* ProgramCache::get(const ProgramDescription& description) {
407 // program for A8, unmodulated, texture w/o shader (black text/path textures) is equivalent
408 // to standard texture program (bitmaps, patches). Consider them equivalent.
413 Program* program = nullptr;
415 description.log("Could not find program");
416 program = generateProgram(description, key);
417 mCache[key] = std::unique_ptr<Program>(program);
419 program = iter->second.get();
421 program;
425 // Program generation
428 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {
432 return new Program(description, vertexShader.string(), fragmentShader.string());