Add new flag that will simplify the GL path

This commit is contained in:
Henrik Rydgård
2026-05-14 22:20:35 +02:00
parent 8dc3e8ed14
commit 85de7fdc50
8 changed files with 15 additions and 9 deletions
+1 -1
View File
@@ -138,7 +138,7 @@ Lin::Matrix4x4 ComputeOrthoMatrix(float xres, float yres, CoordConvention coordC
break;
case CoordConvention::OpenGL:
default:
ortho.setOrtho(0.0f, xres, yres, 0.0f, -1.0f, 1.0f);
ortho.setOrthoGL(0.0f, xres, yres, 0.0f, -1.0f, 1.0f);
break;
}
// Compensate for rotated display if needed.