replaced ac->count with ac->count - ac->start in import_texcoord(), as in the other import functions

This commit is contained in:
Brian Paul 2001-04-17 20:37:44 +00:00
parent 0d47d26a68
commit a6c6fce7e8
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: ac_import.c,v 1.11 2001/03/19 02:25:36 keithw Exp $ */
/* $Id: ac_import.c,v 1.12 2001/04/17 20:37:44 brianp Exp $ */
/*
* Mesa 3-D graphics library
@ -199,7 +199,7 @@ static void import_texcoord( GLcontext *ctx, GLuint unit,
from->Type,
from->Size,
ac->start,
ac->count);
ac->count - ac->start);
to->Size = from->Size;
to->StrideB = 4 * sizeof(GLfloat);