mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 23:25:46 +00:00
vk_pipeline_cache: Fix ReleaseContents order
This commit is contained in:
parent
1e763c4c83
commit
9d5262ad26
1 changed files with 2 additions and 2 deletions
|
@ -111,9 +111,9 @@ struct ShaderInfo {
|
||||||
|
|
||||||
struct ShaderPools {
|
struct ShaderPools {
|
||||||
void ReleaseContents() {
|
void ReleaseContents() {
|
||||||
inst.ReleaseContents();
|
|
||||||
block.ReleaseContents();
|
|
||||||
flow_block.ReleaseContents();
|
flow_block.ReleaseContents();
|
||||||
|
block.ReleaseContents();
|
||||||
|
inst.ReleaseContents();
|
||||||
}
|
}
|
||||||
|
|
||||||
Shader::ObjectPool<Shader::IR::Inst> inst;
|
Shader::ObjectPool<Shader::IR::Inst> inst;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue