Added a few missing const specifiers

This commit is contained in:
Paolo Cignoni 2012-11-28 11:23:51 +00:00
parent 75ca1eabfc
commit 7540b29cf5
1 changed files with 2 additions and 2 deletions

View File

@ -802,8 +802,8 @@ void SplatRenderer<MeshType>::drawSplats(std::vector<MeshType*> & meshes, vcg::G
glTexCoordPointer(
1,
GL_FLOAT,
size_t(&m.vert[1].cR())-size_t(&m.vert[0].cR()),
&m.vert[0].cR()
size_t(&m.vert[1].R())-size_t(&m.vert[0].R()),
&m.vert[0].R()
);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
glClientActiveTexture(GL_TEXTURE0);