From 510bd474e6744a44b3cfff7c03b7768f211f8ae9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 8 Mar 2020 17:58:49 -0400 Subject: [PATCH] vbo: fix vbo_copy_vertices for GL_PATCHES and adjacency primitive types MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes: 4c6323c49f1 - vbo: handle GS and tess primitive types when splitting Begin/End Reviewed-by: Mathias Fröhlich Part-of: --- src/mesa/vbo/vbo_attrib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2