From 5ba69b59c3a007bc251a35b8deb86fe8061a2a36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=B6glund?= Date: Fri, 7 Feb 2014 20:34:08 +0100 Subject: [PATCH] mesa: Preserve the NewArrays state when copying a VAO Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=72895 --- src/mesa/main/attrib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 7b7cf0e..fa19288 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1457,6 +1457,7 @@ copy_array_object(struct gl_context *ctx, /* _Enabled must be the same than on push */ dest->_Enabled = src->_Enabled; + dest->NewArrays = src->NewArrays; dest->_MaxElement = src->_MaxElement; } -- 1.8.5.3