OSDN Git Service

i965: Shut up a few unused variable warnings.
authorKenneth Graunke <kenneth@whitecape.org>
Sun, 7 Jan 2018 01:32:04 +0000 (17:32 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Sun, 7 Jan 2018 01:34:54 +0000 (17:34 -0800)
If asserts are disabled, you get pointless warnings about devinfo
being used (it's used to assert on devinfo->gen).

src/mesa/drivers/dri/i965/gen8_multisample_state.c

index 904e0fe..5381d32 100644 (file)
@@ -36,7 +36,7 @@
 static void
 gen10_emit_wa_cs_stall_flush(struct brw_context *brw)
 {
-   const struct gen_device_info *devinfo = &brw->screen->devinfo;
+   UNUSED const struct gen_device_info *devinfo = &brw->screen->devinfo;
    assert(devinfo->gen == 10);
    brw_emit_pipe_control_flush(brw,
                                PIPE_CONTROL_CS_STALL |
@@ -54,7 +54,7 @@ gen10_emit_wa_cs_stall_flush(struct brw_context *brw)
 static void
 gen10_emit_wa_lri_to_cache_mode_zero(struct brw_context *brw)
 {
-   const struct gen_device_info *devinfo = &brw->screen->devinfo;
+   UNUSED const struct gen_device_info *devinfo = &brw->screen->devinfo;
    assert(devinfo->gen == 10);
 
    /* Write to CACHE_MODE_0 (0x7000) */