| 78 | void Merge(ValidationCache const *other); |
| 79 | |
| 80 | bool Contains(uint32_t hash) { |
| 81 | auto guard = ReadLock(); |
| 82 | return good_shader_hashes_.count(hash) != 0; |
| 83 | } |
| 84 | |
| 85 | void Insert(uint32_t hash) { |
| 86 | auto guard = WriteLock(); |
no test coverage detected