Renamed bx::uint32_min/max/clamp/cntlz/cnttz/mod to typed equivalents. (#3692)

This commit is contained in:
Branimir Karadžić
2026-04-26 21:19:08 -07:00
committed by GitHub
parent 43fbfaba41
commit 331783cf9a
23 changed files with 117 additions and 117 deletions

View File

@@ -290,7 +290,7 @@ uint32_t genSphere(uint8_t _subdiv0, void* _pos0 = NULL, uint16_t _posStride0 =
} gen(_pos0, _posStride0, _normals0, _normalStride0, _subdiv0);
}
uint32_t numVertices = 20*3*bx::uint32_max(1, (uint32_t)bx::pow(4.0f, _subdiv0) );
uint32_t numVertices = 20*3*bx::max(1, (uint32_t)bx::pow(4.0f, _subdiv0) );
return numVertices;
}