From 25bd3aedc832ce28c1fb3924a1aa7f9435eaf6c9 Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Sun, 10 Mar 2019 16:10:59 +0000 Subject: [PATCH] Increase the max polygon size to 32 --- GL/draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GL/draw.c b/GL/draw.c index 58ea3a9..3b9cceb 100644 --- a/GL/draw.c +++ b/GL/draw.c @@ -756,7 +756,7 @@ static void genArraysTriangleStrip( output[count - 1].flags = PVR_CMD_VERTEX_EOL; } -#define MAX_POLYGON_SIZE 10 +#define MAX_POLYGON_SIZE 32 static void genArraysTriangleFan( ClipVertex* output,