mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Remove camera distance from the calculation for how much to offset sprites to avoid z buffer fighting.
git-svn-id: https://svn.eduke32.com/eduke32@5945 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1c18f9d4de
commit
7d15f7fff7
1 changed files with 2 additions and 3 deletions
|
@ -4348,9 +4348,8 @@ int32_t polymost_lintersect(int32_t x1, int32_t y1, int32_t x2, int32_t y2,
|
||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define TSPR_OFFSET(tspr) \
|
#define TSPR_OFFSET_FACTOR .0002f
|
||||||
(((FindDistance2D((tspr->x - globalposx), (tspr->y - globalposy)) >> 3) * .0002f) \
|
#define TSPR_OFFSET(tspr) (TSPR_OFFSET_FACTOR + ((tspr->owner != -1 ? tspr->owner & 63 : 0) * TSPR_OFFSET_FACTOR))
|
||||||
+ ((tspr->owner != -1 ? tspr->owner & 63 : 0) * .0002f))
|
|
||||||
|
|
||||||
void polymost_drawsprite(int32_t snum)
|
void polymost_drawsprite(int32_t snum)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue