Added bzip2 lib and Quake (thanks to Lubomyr)

This commit is contained in:
pelya
2011-02-14 12:05:30 +00:00
parent 892c4813b9
commit 1e468ea75d
152 changed files with 88466 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// plane_t structure
// !!! if this is changed, it must be changed in asm_i386.h too !!!
typedef struct mplane_s
{
vec3_t normal;
float dist;
byte type; // for texture axis selection and fast side tests
byte signbits; // signx + signy<<1 + signz<<1
byte pad[2];
} mplane_t;
//Dan East: Fixed Point Math addition
typedef struct mplane_FPM_s
{
vec3_FPM_t normal;
fixedpoint_t dist;
byte type; // for texture axis selection and fast side tests
byte signbits; // signx + signy<<1 + signz<<1
byte pad[2];
} mplane_FPM_t;