diff options
author | Brian Paul <brianp@vmware.com> | 2017-03-05 12:45:34 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2017-03-08 08:50:20 -0700 |
commit | 2b9ab605aabc748dd6171d8dbc1bc0e7d20e1f20 (patch) | |
tree | f4c26dbca057c9a0cf7844d95d746811f88f5e34 /src/gallium/include | |
parent | 73bafb5ee38964019c3da2000095608a7fb4b554 (diff) |
gallium: s/uint/enum pipe_shader_type/ for set_constant_buffer()
Reviewed-by: Edward O'Callaghan <funfunctor@folklore1984.net>
Diffstat (limited to 'src/gallium/include')
-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 49e366a74e..fee26f383c 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -273,7 +273,7 @@ struct pipe_context { const struct pipe_clip_state * ); void (*set_constant_buffer)( struct pipe_context *, - uint shader, uint index, + enum pipe_shader_type shader, uint index, const struct pipe_constant_buffer *buf ); void (*set_framebuffer_state)( struct pipe_context *, |