From a5f72c91e5ac38c82bcc1585e6d6f08b9929dba3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 30 Jan 2020 19:41:02 -0500 Subject: [PATCH] vbo: increase the size of the immediate mode buffer to decrease draw count MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Mathias Fröhlich Part-of: --- src/mesa/vbo/vbo_exec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/vbo/vbo_exec.h b/src/mesa/vbo/vbo_exec.h index 96a290880af..92556906a15 100644 --- a/src/mesa/vbo/vbo_exec.h +++ b/src/mesa/vbo/vbo_exec.h @@ -49,7 +49,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. /** * Size (in bytes) of the VBO to use for glBegin/glVertex/glEnd-style rendering. */ -#define VBO_VERT_BUFFER_SIZE (1024 * 64) +#define VBO_VERT_BUFFER_SIZE (1024 * 512) struct vbo_exec_eval1_map { -- 2.30.2