Re-enable DynOS Vtx rounding

This commit is contained in:
Agent X 2024-05-19 09:53:18 -04:00
parent ceb7aa4649
commit 70fb580311
1 changed files with 9 additions and 9 deletions

View File

@ -8,15 +8,15 @@ extern "C" {
#define F32VTX_SENTINEL_2 0x5854
static inline bool ShouldUseF32Vtx(DataNode<Vtx>* aNode) {
// for (u32 i = 0; i != aNode->mSize; ++i) {
// for (u32 j = 0; j != 3; ++j) {
// if (aNode->mData[i].n.ob[j] < -0x7FFF ||
// aNode->mData[i].n.ob[j] > +0x7FFF) {
// return true;
// }
// }
// }
return true;
for (u32 i = 0; i != aNode->mSize; ++i) {
for (u32 j = 0; j != 3; ++j) {
if (aNode->mData[i].n.ob[j] < -0x7FFF ||
aNode->mData[i].n.ob[j] > +0x7FFF) {
return true;
}
}
}
return false;
}
static inline bool IsUsingF32Vtx(Vec3f ob) {