From: Kenneth Graunke Date: Thu, 20 Sep 2018 18:12:27 +0000 (-0700) Subject: iris: silence const warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=58a6c99ebe2166f8d5db88830bdfac57540403d4;p=mesa.git iris: silence const warning not sure why this is labeled const, I'm pretty sure we are taking the reference and owning this, so there's no particular reason we can't change it. it certainly seems to be working for non-compute. and, freedreno's ir3_shader.c seems to do this as well. still...gross :/ --- diff --git a/src/gallium/drivers/iris/iris_program.c b/src/gallium/drivers/iris/iris_program.c index 5a4c6b7fc81..ab2ce815961 100644 --- a/src/gallium/drivers/iris/iris_program.c +++ b/src/gallium/drivers/iris/iris_program.c @@ -156,7 +156,7 @@ iris_create_compute_state(struct pipe_context *ctx, { assert(state->ir_type == PIPE_SHADER_IR_NIR); - return iris_create_uncompiled_shader(ctx, state->prog, NULL); + return iris_create_uncompiled_shader(ctx, (void *) state->prog, NULL); } static void