qbsp.hh: clarify detail_separator comments

This commit is contained in:
Eric Wasylishen 2017-05-31 17:37:57 -06:00
parent 8236efa613
commit 30fb5ef446
1 changed files with 2 additions and 2 deletions

View File

@ -253,7 +253,7 @@ typedef struct surface_s {
vec3_t mins, maxs;
bool onnode; // true if surface has already been used
// as a splitting node
bool detail_separator; // true if split generated by a detail brush
bool detail_separator; // true if ALL faces are detail
face_t *faces; // links to all faces on either side of the surf
bool has_detail; // 1 if the surface has detail brushes
bool has_struct; // 1 if the surface has non-detail brushes
@ -282,7 +282,7 @@ typedef struct node_s {
int viscluster; // detail cluster for faster vis
int fillmark; // for flood filling
int occupied; // entity number in leaf for outside filling
bool detail_separator; // for vis portal generation
bool detail_separator; // for vis portal generation. true if ALL faces on node, and on all descendant nodes/leafs, are detail.
} node_t;
#include <qbsp/brush.hh>