From 30fb5ef44653bf42804a5e632a05896d0a2adee8 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Wed, 31 May 2017 17:37:57 -0600 Subject: [PATCH] qbsp.hh: clarify detail_separator comments --- include/qbsp/qbsp.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/qbsp/qbsp.hh b/include/qbsp/qbsp.hh index e334508c..621ad5e2 100644 --- a/include/qbsp/qbsp.hh +++ b/include/qbsp/qbsp.hh @@ -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