mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 07:20:00 +00:00
vk_pipeline_cache: Fix ReleaseContents order
This commit is contained in:
parent
a8d8fd40f7
commit
d40faa1db0
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue