diff options
author | Marek Olšák <[email protected]> | 2020-03-08 17:58:49 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-11 18:45:28 +0000 |
commit | 510bd474e6744a44b3cfff7c03b7768f211f8ae9 (patch) | |
tree | b029207e368a925567316f549a7f8a116fcdadd2 | |
parent | 218dfd8c1a50515105199704d7060ae1b0d3b101 (diff) |
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 <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3591>
-rw-r--r-- | src/mesa/vbo/vbo_attrib.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |