i965: Drop perf_debug about rasterizer discard in SOL vs. clipper.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 11 May 2016 00:54:45 +0000 (17:54 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 16 Jun 2016 21:37:07 +0000 (14:37 -0700)
I recently experimented with performing rasterizer discard in the SOL
unit instead of the clipper, and as far as I can tell, it's basically
the same performance.  The clipper comes directly after SOL anyway,
and setting the clipper to REJECT_ALL should be pretty darn cheap.

Keep the perf_debug on Sandybridge, where the GS actually does work.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/gen6_clip_state.c

index 26de633bae6d9e2e15cb0b5640a1b9145b1c9fdf..b079ffdd6da41abf85713ec1dd657bb54bc0cdbb 100644 (file)
@@ -165,9 +165,11 @@ upload_clip_state(struct brw_context *brw)
    /* BRW_NEW_RASTERIZER_DISCARD */
    if (ctx->RasterDiscard) {
       dw2 |= GEN6_CLIP_MODE_REJECT_ALL;
-      perf_debug("Rasterizer discard is currently implemented via the clipper; "
-                 "%s be faster.\n", brw->gen >= 7 ? "using the SOL unit may" :
-                 "having the GS not write primitives would likely");
+      if (brw->gen == 6) {
+         perf_debug("Rasterizer discard is currently implemented via the "
+                    "clipper; having the GS not write primitives would "
+                    "likely be faster.\n");
+      }
    }
 
    uint32_t enable;