diff options
author | Marek Olšák <[email protected]> | 2014-09-01 20:01:03 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-09-04 16:09:56 +0200 |
commit | 374f3e9e19f064007ea8a864fbd00f1ae7deafd1 (patch) | |
tree | b8f5ce9f5ed64b7103585dab8018dbedf4ec9a4a /src/mesa/main/attrib.c | |
parent | 8bd67231797e5d79d72a4e91b37ea81da30c6df3 (diff) |
mesa: invalidate draw state in glPopClientAttrib
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82538
Cc: [email protected]
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index c656845dff9..2e289b6f1cb 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1488,6 +1488,10 @@ copy_array_attrib(struct gl_context *ctx, /* skip ArrayBufferObj */ /* skip IndexBufferObj */ + + /* Invalidate draw state. It will be updated during the next draw. */ + dest->DrawMethod = DRAW_NONE; + dest->_DrawArrays = NULL; } /** |