mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-10 07:11:42 +00:00
20 lines
297 B
C
20 lines
297 B
C
|
|
// window system independent camera view code
|
|
|
|
typedef struct
|
|
{
|
|
int width, height;
|
|
|
|
qboolean timing;
|
|
|
|
vec3_t origin; // at center of window
|
|
float scale;
|
|
|
|
float topclip, bottomclip;
|
|
|
|
qboolean d_dirty;
|
|
} xy_t;
|
|
|
|
|
|
/*BOOL*/ int FilterBrush(brush_t *pb, BOOL bCalledFromDisplayCode = false);
|
|
|