softpipe: fix release build unused variable warning
authorGrazvydas Ignotas <notasas@gmail.com>
Sat, 10 Dec 2016 19:10:47 +0000 (21:10 +0200)
committerMarek Olšák <marek.olsak@amd.com>
Sat, 10 Dec 2016 20:25:45 +0000 (21:25 +0100)
Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Signed-off-by: Marek Olšák <marek.olsak@amd.com>
src/gallium/drivers/softpipe/sp_state_shader.c

index a7456628d80ae2575863ee5907b85efab7bb8d57..b2eda244268508a67f53e372eb6a89d821225917 100644 (file)
@@ -420,7 +420,7 @@ static void
 softpipe_delete_compute_state(struct pipe_context *pipe,
                               void *cs)
 {
-   struct softpipe_context *softpipe = softpipe_context(pipe);
+   MAYBE_UNUSED struct softpipe_context *softpipe = softpipe_context(pipe);
    struct sp_compute_shader *state = (struct sp_compute_shader *)cs;
 
    assert(softpipe->cs != state);