mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 20:40:47 +00:00
Remove the preceding sprite interpolation functions, not needed anymore
This commit is contained in:
parent
221172311c
commit
27675d9f4f
2 changed files with 0 additions and 13 deletions
|
@ -111,12 +111,4 @@ void restoreinterpolations(void) // Stick at end of drawscreen
|
|||
*curipos[i] = bakipos[i];
|
||||
}
|
||||
|
||||
void togglespriteinterpolation(spritetype *sp, int set)
|
||||
{
|
||||
auto func = set ? setinterpolation : stopinterpolation;
|
||||
func(&sp->x);
|
||||
func(&sp->y);
|
||||
func(&sp->z);
|
||||
}
|
||||
|
||||
END_SW_NS
|
||||
|
|
|
@ -50,11 +50,6 @@ void updateinterpolations(void);
|
|||
void dointerpolations(int smoothratio);
|
||||
void restoreinterpolations(void);
|
||||
|
||||
void togglespriteinterpolation(spritetype *sp, int set);
|
||||
|
||||
static void FORCE_INLINE setspriteinterpolation(spritetype *sp) { togglespriteinterpolation(sp, 1); }
|
||||
static void FORCE_INLINE stopspriteinterpolation(spritetype *sp) { togglespriteinterpolation(sp, 0); }
|
||||
|
||||
#endif
|
||||
|
||||
END_SW_NS
|
||||
|
|
Loading…
Reference in a new issue