mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Changed alpha threshold to epsilon
This commit is contained in:
parent
9b6424f2d5
commit
eff0f4d363
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ constexpr auto MAX_TRANSPARENT_VERTICES = MAX_TRANSPARENT_FACES * 6;
|
|||
constexpr auto MAX_TRANSPARENT_FACES_PER_ROOM = 16384;
|
||||
constexpr auto TRANSPARENT_BUCKET_SIZE = 3840 * 16;
|
||||
constexpr auto ALPHA_TEST_THRESHOLD = 0.5f;
|
||||
constexpr auto ALPHA_BLEND_THRESHOLD = 0.95f;
|
||||
constexpr auto ALPHA_BLEND_THRESHOLD = 1.0f - EPSILON;
|
||||
constexpr auto FAST_ALPHA_BLEND_THRESHOLD = 0.5f;
|
||||
|
||||
constexpr auto MAX_BONES = 32;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue