This commit is contained in:
SoulliesOfficial
2025-12-14 18:40:00 -05:00
parent f7af60351b
commit 7c1cb7e8e1
291 changed files with 226851 additions and 353 deletions

View File

@@ -262,8 +262,8 @@ namespace PotaToon
private void SetupGraphicsBuffers(int width, int height)
{
Release();
screenWidth = width; // * 2
screenHeight = height; // * 2
screenWidth = width * 2;
screenHeight = height * 2;
int bufferSize = Mathf.Max(screenWidth * screenHeight * MAX_SORTED_PIXELS, 1);
int bufferStride = sizeof(uint) * 3;