OpenGL2: Don't interleave texCoords and lightCoords in tess.

This commit is contained in:
SmileTheory 2016-11-25 01:17:46 -08:00
parent 1c1e1f61f1
commit 2349ef038e
9 changed files with 74 additions and 84 deletions

View file

@ -208,7 +208,7 @@ void RB_CalcBulgeVertexes( deformStage_t *ds ) {
now = backEnd.refdef.time * ds->bulgeSpeed * 0.001f;
for ( i = 0; i < tess.numVertexes; i++, xyz += 4, st += 4, normal += 4 ) {
for ( i = 0; i < tess.numVertexes; i++, xyz += 4, st += 2, normal += 4 ) {
int off;
float scale;
vec3_t fNormal;