mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Re-expose clipmoveboxtracenum.
git-svn-id: https://svn.eduke32.com/eduke32@5229 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
d8ee28b89d
commit
7a89c58360
3 changed files with 3 additions and 3 deletions
|
@ -1097,6 +1097,8 @@ FORCE_INLINE void rotatesprite_win(int32_t sx, int32_t sy, int32_t z, int16_t a,
|
||||||
void bfirst_search_init(int16_t *list, uint8_t *bitmap, int32_t *eltnumptr, int32_t maxnum, int16_t firstelt);
|
void bfirst_search_init(int16_t *list, uint8_t *bitmap, int32_t *eltnumptr, int32_t maxnum, int16_t firstelt);
|
||||||
void bfirst_search_try(int16_t *list, uint8_t *bitmap, int32_t *eltnumptr, int16_t elt);
|
void bfirst_search_try(int16_t *list, uint8_t *bitmap, int32_t *eltnumptr, int16_t elt);
|
||||||
|
|
||||||
|
extern int32_t clipmoveboxtracenum;
|
||||||
|
|
||||||
int32_t clipmove(vec3_t *vect, int16_t *sectnum, int32_t xvect, int32_t yvect, int32_t walldist,
|
int32_t clipmove(vec3_t *vect, int16_t *sectnum, int32_t xvect, int32_t yvect, int32_t walldist,
|
||||||
int32_t ceildist, int32_t flordist, uint32_t cliptype) ATTRIBUTE((nonnull(1,2)));
|
int32_t ceildist, int32_t flordist, uint32_t cliptype) ATTRIBUTE((nonnull(1,2)));
|
||||||
int32_t clipmovex(vec3_t *pos, int16_t *sectnum, int32_t xvect, int32_t yvect,
|
int32_t clipmovex(vec3_t *pos, int16_t *sectnum, int32_t xvect, int32_t yvect,
|
||||||
|
|
|
@ -13735,7 +13735,7 @@ int32_t lastwall(int16_t point)
|
||||||
|
|
||||||
////////// CLIPMOVE //////////
|
////////// CLIPMOVE //////////
|
||||||
|
|
||||||
static int32_t clipmoveboxtracenum = 3;
|
int32_t clipmoveboxtracenum = 3;
|
||||||
|
|
||||||
#ifdef HAVE_CLIPSHAPE_FEATURE
|
#ifdef HAVE_CLIPSHAPE_FEATURE
|
||||||
static int32_t clipsprite_try(const spritetype *spr, int32_t xmin, int32_t ymin, int32_t xmax, int32_t ymax)
|
static int32_t clipsprite_try(const spritetype *spr, int32_t xmin, int32_t ymin, int32_t xmax, int32_t ymax)
|
||||||
|
|
|
@ -2147,8 +2147,6 @@ void COVERupdatesector(int32_t x, int32_t y, int16_t* newsector);
|
||||||
|
|
||||||
void updatesectorz(int,int,int,int16_t*);
|
void updatesectorz(int,int,int,int16_t*);
|
||||||
|
|
||||||
extern int clipmoveboxtracenum;
|
|
||||||
|
|
||||||
|
|
||||||
void short_setinterpolation(short *posptr);
|
void short_setinterpolation(short *posptr);
|
||||||
void short_stopinterpolation(short *posptr);
|
void short_stopinterpolation(short *posptr);
|
||||||
|
|
Loading…
Reference in a new issue