From: Marek Olšák Date: Fri, 31 Jan 2020 00:41:02 +0000 (-0500) Subject: vbo: increase the size of the immediate mode buffer to decrease draw count X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5f72c91e5ac38c82bcc1585e6d6f08b9929dba3;p=mesa.git vbo: increase the size of the immediate mode buffer to decrease draw count Reviewed-by: Mathias Fröhlich Part-of: --- 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 {