vk_pipeline_cache: Add pipeline cache

This commit is contained in:
ReinUsesLisp
2021-03-22 21:03:20 -03:00
committed by ameerj
parent cdbb207953
commit fba49056aa
8 changed files with 358 additions and 117 deletions
+2 -2
View File
@@ -39,11 +39,11 @@ u64 FileEnvironment::ReadInstruction(u32 offset) {
return data[offset / 8];
}
u32 FileEnvironment::TextureBoundBuffer() {
u32 FileEnvironment::TextureBoundBuffer() const {
throw NotImplementedException("Texture bound buffer serialization");
}
std::array<u32, 3> FileEnvironment::WorkgroupSize() {
std::array<u32, 3> FileEnvironment::WorkgroupSize() const {
return {1, 1, 1};
}