Fix incremental menu animation presentation

This commit is contained in:
gamer147
2026-07-30 11:04:29 -04:00
parent efa8fbd03a
commit 37bf8d31c8
10 changed files with 171 additions and 39 deletions

View File

@@ -64,9 +64,9 @@ internal sealed class GpuRetainedRenderer : IDisposable
};
}
public void BeginFrame()
public void BeginFrame(bool preserveExistingLayers)
{
_used = 0;
if (!preserveExistingLayers) _used = 0;
_textureUploads = 0;
_textureUploadTicks = 0;
}