mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
Fix clipping bug
This commit is contained in:
parent
ef70ba0985
commit
6a7bb43ce1
1 changed files with 1 additions and 1 deletions
|
@ -1492,7 +1492,7 @@ bool cullhalfspace(float clipdistance1, float clipdistance2, float &t1, float &t
|
||||||
t1 = MAX(-clipdistance1 / (clipdistance2 - clipdistance1), t1);
|
t1 = MAX(-clipdistance1 / (clipdistance2 - clipdistance1), t1);
|
||||||
|
|
||||||
if (clipdistance2 < 0.0f)
|
if (clipdistance2 < 0.0f)
|
||||||
t2 = MIN(1.0f - clipdistance2 / (clipdistance1 - clipdistance2), t2);
|
t2 = MIN(1.0f + clipdistance2 / (clipdistance1 - clipdistance2), t2);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue