diff options
author | Rob Clark <[email protected]> | 2016-06-07 14:32:16 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-06-20 12:36:20 -0400 |
commit | 64180de1bf0ab9afcb4e659daf3132aa5b37638c (patch) | |
tree | 755dfdfe8e74726cfb75217b14db3b36b535919b /src/gallium/include/pipe/p_context.h | |
parent | ef534b9389bc74b007d76d2a1776068d23e5b887 (diff) |
gallium: make image_view const
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe/p_context.h')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 67ee5cc6477..0c88e00de16 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -331,7 +331,7 @@ struct pipe_context { */ void (*set_shader_images)(struct pipe_context *, unsigned shader, unsigned start_slot, unsigned count, - struct pipe_image_view *images); + const struct pipe_image_view *images); void (*set_vertex_buffers)( struct pipe_context *, unsigned start_slot, |