mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 17:32:13 +00:00
ac7ca6aa75
git-svn-id: https://svn.eduke32.com/eduke32@297 1a8010ca-5511-0410-912e-c29ae57300e0
39 lines
834 B
C
39 lines
834 B
C
// blah
|
|
|
|
#ifndef _polymer_h_
|
|
# define _polymer_h_
|
|
|
|
# ifdef _WIN32
|
|
# define PR_CALLBACK __stdcall
|
|
# else
|
|
# define PR_CALLBACK
|
|
# endif
|
|
|
|
# include "compat.h"
|
|
# include "build.h"
|
|
# include "glbuild.h"
|
|
# include "osd.h"
|
|
# include "polymost.h"
|
|
|
|
void polymer_glinit(void);
|
|
int polymer_init(void);
|
|
void polymer_drawrooms(long daposx, long daposy, long daposz, short daang, long dahoriz, short dacursectnum);
|
|
|
|
typedef struct s_prvertex {
|
|
double v[3];
|
|
short wallnum;
|
|
} _prvertex;
|
|
|
|
typedef struct s_prsector {
|
|
_prvertex* verts;
|
|
short wallcount;
|
|
char invalidate;
|
|
} _prsector;
|
|
|
|
extern _prsector* prsectors[MAXSECTORS];
|
|
|
|
// Polymer cvars
|
|
extern char pr_verbosity;
|
|
extern char pr_wireframe;
|
|
|
|
#endif // !_polymer_h_
|