From: Marek Olšák Date: Sun, 8 Mar 2020 21:58:49 +0000 (-0400) Subject: vbo: fix vbo_copy_vertices for GL_PATCHES and adjacency primitive types X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=510bd474e6744a44b3cfff7c03b7768f211f8ae9;p=mesa.git vbo: fix vbo_copy_vertices for GL_PATCHES and adjacency primitive types Fixes: 4c6323c49f1 - vbo: handle GS and tess primitive types when splitting Begin/End Reviewed-by: Mathias Fröhlich Part-of: --- diff --git a/src/mesa/vbo/vbo_attrib.h b/src/mesa/vbo/vbo_attrib.h index 165734b30a6..e32b2f4670b 100644 --- a/src/mesa/vbo/vbo_attrib.h +++ b/src/mesa/vbo/vbo_attrib.h @@ -116,6 +116,6 @@ enum vbo_attrib { -#define VBO_MAX_COPIED_VERTS 3 +#define VBO_MAX_COPIED_VERTS 31 #endif