Home
last modified time | relevance | path

Searched refs:precache (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/Renderer/
DRoutineCache.hpp28 RoutineCache(int n, const char *precache = 0);
32 const char *precache; member in sw::RoutineCache
47 …eCache<State>::RoutineCache(int n, const char *precache) : LRUCache<State, Routine>(n), precache(p… in RoutineCache() argument
52 if(precache) in RoutineCache()
54 char dllName[1024]; sprintf(dllName, "%s.dll", precache); in RoutineCache()
55 char dirName[1024]; sprintf(dirName, "%s.dir", precache); in RoutineCache()
97 char dllName[1024]; sprintf(dllName, "%s.dll", precache); in ~RoutineCache()
98 char dirName[1024]; sprintf(dirName, "%s.dir", precache); in ~RoutineCache()
100 if(precache) in ~RoutineCache()
DRenderer.cpp2598 precacheVertex = !newConfiguration && configuration.precache; in updateConfiguration()
2599 precacheSetup = !newConfiguration && configuration.precache; in updateConfiguration()
2600 precachePixel = !newConfiguration && configuration.precache; in updateConfiguration()
/external/swiftshader/src/Main/
DSwiftConfig.hpp62 bool precache; member
DSwiftConfig.cpp433 …precaching:</td><td><input name = 'precache' type='checkbox'" + (config.precache == true ? checked… in page()
548 config.precache = false; in parsePost()
686 config.precache = true; in parsePost()
752 config.precache = ini.getBoolean("Testing", "Precache", false); in readConfiguration()
810 ini.addValue("Testing", "Precache", itoa(config.precache)); in writeConfiguration()