diff options
author | Brian Paul <[email protected]> | 2008-06-17 11:31:45 -0600 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-23 17:36:01 -0700 |
commit | 9acf207277b4de91b917b37a92f6b612f4710c80 (patch) | |
tree | e356efac02ac49d808745e91c90a9edf1b3eb1da /src/mesa/vbo/vbo_exec_draw.c | |
parent | 5b98236e75b15b77c04545f3e06d4522fe7ad608 (diff) |
mesa: s/GL_POLYGON+1/PRIM_OUTSIDE_BEGIN_END/
(cherry picked from commit 8a369b909a6648ae7a5a0c2dcb972a2f96f99a80)
Diffstat (limited to 'src/mesa/vbo/vbo_exec_draw.c')
-rw-r--r-- | src/mesa/vbo/vbo_exec_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_exec_draw.c b/src/mesa/vbo/vbo_exec_draw.c index 5f737fd90fa..86155d220d2 100644 --- a/src/mesa/vbo/vbo_exec_draw.c +++ b/src/mesa/vbo/vbo_exec_draw.c @@ -129,7 +129,7 @@ static GLuint vbo_copy_vertices( struct vbo_exec_context *exec ) for (i = 0 ; i < ovf ; i++) _mesa_memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); return i; - case GL_POLYGON+1: + case PRIM_OUTSIDE_BEGIN_END: return 0; default: assert(0); |