vk_pipeline_cache: Fix ReleaseContents order

This commit is contained in:
ReinUsesLisp 2021-03-23 16:12:04 -03:00 committed by ameerj
parent a8d8fd40f7
commit d40faa1db0

View File

@ -111,9 +111,9 @@ struct ShaderInfo {
struct ShaderPools {
void ReleaseContents() {
inst.ReleaseContents();
block.ReleaseContents();
flow_block.ReleaseContents();
block.ReleaseContents();
inst.ReleaseContents();
}
Shader::ObjectPool<Shader::IR::Inst> inst;