From 3f364c6a12626d5a0083af5dcfadd281a666d6af Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Fri, 15 Sep 2017 19:14:21 +0100 Subject: [PATCH] Disable auto sorting features of PVR --- gl-pvr.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/gl-pvr.c b/gl-pvr.c index 2280fc9..13719c4 100644 --- a/gl-pvr.c +++ b/gl-pvr.c @@ -312,16 +312,12 @@ int _glKosInitPVR() { GLubyte i; pvr_init_params_t params = { - /* Enable opaque and translucent polygons with size 32 and 32 */ { PVR_BINSIZE_32, PVR_BINSIZE_0, PVR_BINSIZE_32, PVR_BINSIZE_0, PVR_BINSIZE_0 }, - GL_PVR_VERTEX_BUF_SIZE, /* Vertex buffer size */ - 0, /* No DMA */ - - - 0 /* No FSAA */ + 0, /* No FSAA */ + 1 /* Disable translucent auto-sorting to match traditional GL */ }; pvr_init(¶ms);