Added bzip2 lib and Quake (thanks to Lubomyr)
This commit is contained in:
21
project/jni/application/quake/source/mplane.h
Normal file
21
project/jni/application/quake/source/mplane.h
Normal 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;
|
||||
|
||||
Reference in New Issue
Block a user