diff options
author | Brian Paul <[email protected]> | 2005-11-16 01:58:19 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-16 01:58:19 +0000 |
commit | 738f501f731d9b03a1ff130381ea087c05a7ad40 (patch) | |
tree | 2ed1a5fb6251818d2e48fb824a63048340e4d3ec /src/mesa/tnl/t_vtx_exec.c | |
parent | 62620d349bd30fda460f32d3c6ccfa2a093eac90 (diff) |
Replace GL_POLYGON+1 with PRIM_OUTSIDE_BEGIN_END
Diffstat (limited to 'src/mesa/tnl/t_vtx_exec.c')
-rw-r--r-- | src/mesa/tnl/t_vtx_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vtx_exec.c b/src/mesa/tnl/t_vtx_exec.c index b296e439d20..3705a5c96a9 100644 --- a/src/mesa/tnl/t_vtx_exec.c +++ b/src/mesa/tnl/t_vtx_exec.c @@ -248,7 +248,7 @@ static GLuint _tnl_copy_vertices( GLcontext *ctx ) 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); |