diff options
author | Brian Paul <[email protected]> | 2008-06-17 11:31:45 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-18 09:22:00 -0600 |
commit | 8a369b909a6648ae7a5a0c2dcb972a2f96f99a80 (patch) | |
tree | 09b3d899582559d547fd48db38896d3cc4192197 /src/mesa/vbo/vbo_exec_draw.c | |
parent | c366fd83b617db6c8c064802ff4bf120d654507d (diff) |
mesa: s/GL_POLYGON+1/PRIM_OUTSIDE_BEGIN_END/
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 6bb6849a6a5..3609a7452af 100644 --- a/src/mesa/vbo/vbo_exec_draw.c +++ b/src/mesa/vbo/vbo_exec_draw.c @@ -128,7 +128,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); |