Clean out CFLAGS_NOCLIP thing

This commit is contained in:
Eric Wasylishen 2015-08-02 01:01:07 -06:00
parent 865b568f5b
commit 87a9b28804
2 changed files with 0 additions and 9 deletions

View File

@ -469,14 +469,6 @@ CSGFaces(const mapentity_t *entity)
continue;
}
/* Nothing clips a brush that has CFLAGS_NOCLIP set */
if (brush->cflags & CFLAGS_NOCLIP)
continue;
/* Clipbrush with CFLAGS_NOCLIP should not clip other brushes */
if (clipbrush->cflags & CFLAGS_NOCLIP)
continue;
/* check bounding box first */
for (i = 0; i < 3; i++) {
if (brush->mins[i] > clipbrush->maxs[i])

View File

@ -99,7 +99,6 @@
// Special contents flags for the compiler only
#define CFLAGS_DETAIL (1U << 0)
#define CFLAGS_NOCLIP (1U << 1)
// Texture flags
#define TEX_SPECIAL (1U << 0) /* sky or liquid (no lightmap or subdivision */