Browse Source

tnl: fix MSVC signed/unsigned warnings

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
tags/gles3-fmt-v1
Brian Paul 13 years ago
parent
commit
cb5fb15578
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/mesa/tnl/t_draw.c

+ 2
- 1
src/mesa/tnl/t_draw.c View File

const GLubyte *ptr, GLfloat *fptr, const GLubyte *ptr, GLfloat *fptr,
GLuint count) GLuint count)
{ {
GLuint i, j;
GLuint i;
GLint j;
const GLint size = input->Size; const GLint size = input->Size;


if (input->Normalized) { if (input->Normalized) {

Loading…
Cancel
Save