fix framebuffer scaling, aspect ratio

This commit is contained in:
2025-11-14 10:47:28 +01:00
parent 17c59049f3
commit 9a59d15859
4 changed files with 40 additions and 19 deletions

View File

@@ -29,6 +29,7 @@ public class Lwjgl3Launcher {
//// You may also need to configure GPU drivers to fully disable Vsync; this can cause screen tearing.
configuration.setWindowedMode(640, 480);
//// You can change these files; they are in lwjgl3/src/main/resources/ .
//// They can also be loaded from the root of assets/ .
configuration.setWindowIcon("libgdx128.png", "libgdx64.png", "libgdx32.png", "libgdx16.png");
@@ -42,4 +43,4 @@ public class Lwjgl3Launcher {
return configuration;
}
}
}