diff options
author | Brian Paul <[email protected]> | 2017-03-05 12:29:22 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-03-08 08:50:20 -0700 |
commit | 0fc5110a6e1759c38af74f0b10acc56af6f0bfca (patch) | |
tree | 727987919f91215e92adfb5b62d89ad8e05fad09 /src/gallium | |
parent | 4aec68176dad84d0e97f8b07b2ace8077b18c174 (diff) |
llvmpipe: s/unsigned/enum pipe_shader_type/
Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state_sampler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_sampler.c b/src/gallium/drivers/llvmpipe/lp_state_sampler.c index 01af0521146..c9aba1a8594 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_sampler.c +++ b/src/gallium/drivers/llvmpipe/lp_state_sampler.c @@ -241,7 +241,7 @@ prepare_shader_sampling( struct llvmpipe_context *lp, unsigned num, struct pipe_sampler_view **views, - unsigned shader_type) + enum pipe_shader_type shader_type) { unsigned i; |