Fix incremental menu animation presentation

This commit is contained in:
gamer147
2026-07-30 11:04:29 -04:00
parent 56d60c0625
commit 2ba0870967
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;
}