diff options
author | Brian Paul <[email protected]> | 2004-01-15 00:29:51 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-01-15 00:29:51 +0000 |
commit | 3663c0f82527d972a7e5b85937d8da60253eb6f3 (patch) | |
tree | 6a571530e63a97a1ffb643af83474e63d7ea7229 /src/mesa/tnl/t_vtx_exec.c | |
parent | 5bae6b90f93bb1bc2d85efe3de963fb49a38fed1 (diff) |
Cosmetic changes.
Added a bunch of const qualifiers.
Use _mesa_memcpy() instead of memcpy(), etc.
Diffstat (limited to 'src/mesa/tnl/t_vtx_exec.c')
-rw-r--r-- | src/mesa/tnl/t_vtx_exec.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/tnl/t_vtx_exec.c b/src/mesa/tnl/t_vtx_exec.c index 06879bdc2c8..4a36ed917f9 100644 --- a/src/mesa/tnl/t_vtx_exec.c +++ b/src/mesa/tnl/t_vtx_exec.c @@ -202,23 +202,23 @@ static GLuint _tnl_copy_vertices( GLcontext *ctx ) case GL_LINES: ovf = nr&1; for (i = 0 ; i < ovf ; i++) - memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); + _mesa_memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); return i; case GL_TRIANGLES: ovf = nr%3; for (i = 0 ; i < ovf ; i++) - memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); + _mesa_memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); return i; case GL_QUADS: ovf = nr&3; for (i = 0 ; i < ovf ; i++) - memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); + _mesa_memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); return i; case GL_LINE_STRIP: if (nr == 0) return 0; else { - memcpy( dst, src+(nr-1)*sz, sz * sizeof(GLfloat) ); + _mesa_memcpy( dst, src+(nr-1)*sz, sz * sizeof(GLfloat) ); return 1; } case GL_LINE_LOOP: @@ -227,11 +227,11 @@ static GLuint _tnl_copy_vertices( GLcontext *ctx ) if (nr == 0) return 0; else if (nr == 1) { - memcpy( dst, src+0, sz * sizeof(GLfloat) ); + _mesa_memcpy( dst, src+0, sz * sizeof(GLfloat) ); return 1; } else { - memcpy( dst, src+0, sz * sizeof(GLfloat) ); - memcpy( dst+sz, src+(nr-1)*sz, sz * sizeof(GLfloat) ); + _mesa_memcpy( dst, src+0, sz * sizeof(GLfloat) ); + _mesa_memcpy( dst+sz, src+(nr-1)*sz, sz * sizeof(GLfloat) ); return 2; } case GL_TRIANGLE_STRIP: @@ -242,7 +242,7 @@ static GLuint _tnl_copy_vertices( GLcontext *ctx ) default: ovf = 2 + (nr&1); break; } for (i = 0 ; i < ovf ; i++) - memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); + _mesa_memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); return i; case GL_POLYGON+1: return 0; |