Home
last modified time | relevance | path

Searched refs:RoutineCacheType (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/src/Device/
DSetupProcessor.hpp85 using RoutineCacheType = RoutineCache<State, SetupFunction::CFunctionType>; typedef in sw::SetupProcessor
86 std::unique_ptr<RoutineCacheType> routineCache;
DVertexProcessor.hpp104 using RoutineCacheType = RoutineCache<State, VertexRoutineFunction::CFunctionType>; typedef in sw::VertexProcessor
105 std::unique_ptr<RoutineCacheType> routineCache;
DPixelProcessor.hpp165 using RoutineCacheType = RoutineCache<State, RasterizerFunction::CFunctionType>; typedef in sw::PixelProcessor
166 std::unique_ptr<RoutineCacheType> routineCache;
DVertexProcessor.cpp65 routineCache = std::make_unique<RoutineCacheType>(clamp(cacheSize, 1, 65536)); in setRoutineCacheSize()
DSetupProcessor.cpp116 routineCache = std::make_unique<RoutineCacheType>(clamp(cacheSize, 1, 65536)); in setRoutineCacheSize()
DPixelProcessor.cpp82 routineCache = std::make_unique<RoutineCacheType>(clamp(cacheSize, 1, 65536)); in setRoutineCacheSize()