Updates for occlusion planes

This commit is contained in:
Sauraen
2024-05-03 22:09:39 -07:00
parent 5756a3d958
commit f09fab5b7c

10
gbi.h
View File

@@ -1191,6 +1191,16 @@ typedef struct {
short kc;
} OcclusionPlane_t;
typedef struct {
/* Four vertices of a quad, XYZ components in world space */
struct {
short x;
short y;
short z;
} v[4];
float weight; /* Higher if there's a lot of stuff behind it */
} OcclusionPlaneCandidate;
typedef union {
Light_t l;
long long int force_structure_alignment[2];