Disable auto sorting features of PVR

This commit is contained in:
Luke Benstead 2017-09-15 19:14:21 +01:00
parent 100e6980a5
commit 3f364c6a12

View File

@ -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(&params);