| 31 | static constexpr uint16_t VerticesPerAAQuad = 8; |
| 32 | |
| 33 | GlobalCache::GlobalCache(Context* context) : context(context) { |
| 34 | } |
| 35 | |
| 36 | std::shared_ptr<Program> GlobalCache::findProgram(const BytesKey& programKey) { |
| 37 | auto result = programMap.find(programKey); |
nothing calls this directly
no outgoing calls
no test coverage detected