]> git.localhorst.tv Git - blank.git/commitdiff
slight simplification of cull test
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 10 Dec 2015 12:20:08 +0000 (13:20 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 10 Dec 2015 12:20:08 +0000 (13:20 +0100)
still horrible, need to precalculate stuff outside the loop

src/geometry/geometry.cpp

index ebd47e9ab9cb10aebe5a7ec760ee74d368dfb460..7798d33e949362ede44727f75402832e87a286ae 100644 (file)
@@ -199,21 +199,19 @@ bool CullTest(const AABB &box, const glm::mat4 &MVP) noexcept {
                { box.max.x, box.max.y, box.min.z, 1.0f },
                { box.max.x, box.max.y, box.max.z, 1.0f },
        };
+
+       // check how many corners lie outside
+       int hits[6] = { 0, 0, 0, 0, 0, 0 };
        for (glm::vec4 &corner : corners) {
                corner = MVP * corner;
+               // replacing this with *= 1/w is effectively more expensive
                corner /= corner.w;
-       }
-
-       int hits[6] = { 0, 0, 0, 0, 0, 0 };
-
-       // check how many corners lie outside
-       for (const glm::vec4 &corner : corners) {
-               if (corner.x >  1.0f) ++hits[0];
-               if (corner.x < -1.0f) ++hits[1];
-               if (corner.y >  1.0f) ++hits[2];
-               if (corner.y < -1.0f) ++hits[3];
-               if (corner.z >  1.0f) ++hits[4];
-               if (corner.z < -1.0f) ++hits[5];
+               hits[0] += (corner.x >  1.0f);
+               hits[1] += (corner.x < -1.0f);
+               hits[2] += (corner.y >  1.0f);
+               hits[3] += (corner.y < -1.0f);
+               hits[4] += (corner.z >  1.0f);
+               hits[5] += (corner.z < -1.0f);
        }
 
        // if all corners are outside any given clip plane, the test is true