From 5da1ed732a0fbeaada49f09a822794c139463d1d Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Wed, 13 Mar 2019 08:53:35 +0000 Subject: [PATCH] Bump the default vbuf capacity --- GL/flush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GL/flush.c b/GL/flush.c index fbb26d4..1fa552c 100644 --- a/GL/flush.c +++ b/GL/flush.c @@ -78,7 +78,7 @@ void APIENTRY glFinish() { void APIENTRY glKosInitConfig(GLdcConfig* config) { config->autosort_enabled = GL_FALSE; - config->initial_vbuf_capacity = 256; + config->initial_vbuf_capacity = 1024; config->internal_palette_format = GL_RGBA4; }