Edit rwdc.cpp

This commit is contained in:
Esppiral V
2025-05-01 10:33:31 +00:00
parent 1f2f270da9
commit 88bcd37770

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
}