mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-01 03:20:41 +00:00
Remove unused array weighing an assload of bytes in the .bss segment.
git-svn-id: https://svn.eduke32.com/eduke32@1231 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
39607e84b1
commit
7f28f6a9bd
1 changed files with 10 additions and 10 deletions
|
@ -5938,16 +5938,16 @@ void drawrooms(int32_t daposx, int32_t daposy, int32_t daposz,
|
|||
}
|
||||
|
||||
// UTILITY TYPES AND FUNCTIONS FOR DRAWMASKS OCCLUSION TREE
|
||||
typedef struct s_maskleaf
|
||||
{
|
||||
int32_t index;
|
||||
_point2d p1, p2;
|
||||
_equation maskeq, p1eq, p2eq;
|
||||
struct s_maskleaf* branch[MAXWALLSB];
|
||||
int32_t drawing;
|
||||
} _maskleaf;
|
||||
|
||||
_maskleaf maskleaves[MAXWALLSB];
|
||||
// typedef struct s_maskleaf
|
||||
// {
|
||||
// int32_t index;
|
||||
// _point2d p1, p2;
|
||||
// _equation maskeq, p1eq, p2eq;
|
||||
// struct s_maskleaf* branch[MAXWALLSB];
|
||||
// int32_t drawing;
|
||||
// } _maskleaf;
|
||||
//
|
||||
// _maskleaf maskleaves[MAXWALLSB];
|
||||
|
||||
// returns equation of a line given two points
|
||||
static inline _equation equation(float x1, float y1, float x2, float y2)
|
||||
|
|
Loading…
Reference in a new issue