Remove some remains of software skinning

This commit is contained in:
Henrik Rydgård 2018-03-16 20:38:05 +01:00
parent 8dc85c1a60
commit 2d33d526b8
6 changed files with 1 additions and 88 deletions

View file

@ -72,7 +72,7 @@ int DecFmtSize(u8 fmt) {
}
void DecVtxFormat::ComputeID() {
id = w0fmt | (w1fmt << 4) | (uvfmt << 8) | (c0fmt << 12) | (c1fmt << 16) | (nrmfmt << 20) | (posfmt << 24);
id = uvfmt | (c0fmt << 4) | (c1fmt << 8) | (nrmfmt << 12) | (posfmt << 16);
}
void GetIndexBounds(const void *inds, int count, u32 vertType, u16 *indexLowerBound, u16 *indexUpperBound) {