- remove TriVertex::NumVaryings as this did not help on readability at all

This commit is contained in:
Magnus Norddahl 2017-03-28 10:52:19 +02:00
commit d15def7d41
12 changed files with 155 additions and 176 deletions

View file

@ -139,8 +139,8 @@ TriVertex PolySkyDome::SetVertexXYZ(float xx, float yy, float zz, float uu, floa
v.y = zz;
v.z = yy;
v.w = 1.0f;
v.varying[0] = uu;
v.varying[1] = vv;
v.u = uu;
v.v = vv;
return v;
}