vk_pipeline_cache: Add pipeline cache

This commit is contained in:
ReinUsesLisp
2021-03-22 21:03:20 -03:00
committed by ameerj
parent 2be5c7eff4
commit c63cf4fa2e
8 changed files with 358 additions and 117 deletions

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};
}