2.5 mb VF

This commit is contained in:
Esppiral V
2025-05-01 10:29:40 +00:00
parent 1f2f270da9
commit 40f8d90257

View File

@@ -4957,10 +4957,10 @@ driverOpen(void *o, int32, int32)
#endif
if (pvr_params.fsaa_enabled) {
pvr_params.vertex_buf_size = (1024 + 768) * 1024;
pvr_params.vertex_buf_size = (1024 + 768) * 1024; // ≈ 1.75 MB
pvr_params.opb_overflow_count = 4; // 307200 bytes
} else {
pvr_params.vertex_buf_size = (1024 + 1024) * 1024;
pvr_params.vertex_buf_size = (int)(2.5f * 1024 * 1024); // 2.5 MB
pvr_params.opb_overflow_count = 7; // 268800 bytes
}