From: Kenneth Graunke Date: Mon, 29 Jan 2018 23:06:08 +0000 (-0800) Subject: iris: warning fixes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=352ec1f378e234ae71ae78657a292f4c77cad5b9;p=mesa.git iris: warning fixes --- diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c index 0e3544bf5bd..d6a7a88a37a 100644 --- a/src/gallium/drivers/iris/iris_state.c +++ b/src/gallium/drivers/iris/iris_state.c @@ -1445,10 +1445,10 @@ iris_populate_fs_key(const struct iris_context *ice, memset(key, 0, sizeof(*key)); /* XXX: dirty flags? */ - struct pipe_framebuffer_state *fb = &ice->state.framebuffer; - struct iris_depth_stencil_alpha_state *zsa = ice->state.cso_zsa; - struct iris_rasterizer_state *rast = ice->state.cso_rast; - struct iris_blend_state *blend = ice->state.cso_blend; + const struct pipe_framebuffer_state *fb = &ice->state.framebuffer; + const struct iris_depth_stencil_alpha_state *zsa = ice->state.cso_zsa; + const struct iris_rasterizer_state *rast = ice->state.cso_rast; + const struct iris_blend_state *blend = ice->state.cso_blend; key->nr_color_regions = fb->nr_cbufs;