1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef __R_PLANE__
- #define __R_PLANE__
- #include "r_data.h"
- #ifdef __GNUG__
- #pragma interface
- #endif
- #define PL_SKYFLAT (0x80000000)
- extern int *lastopening;
- extern int floorclip[], ceilingclip[];
- extern fixed_t yslope[], distscale[];
- void R_InitPlanes(void);
- void R_ClearPlanes(void);
- void R_DrawPlanes (void);
- visplane_t *R_FindPlane(
- fixed_t height,
- int picnum,
- int lightlevel,
- fixed_t xoffs,
- fixed_t yoffs
- );
- visplane_t *R_CheckPlane(visplane_t *pl, int start, int stop);
- visplane_t *R_DupPlane(const visplane_t *pl, int start, int stop);
- #endif
|