diff options
author | Brian Paul <[email protected]> | 2017-03-05 12:13:02 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-03-08 08:50:20 -0700 |
commit | 637e5719b5dacbf96cc902deecb187be52495a3e (patch) | |
tree | 29158bcc18968fc23e9d4a9d61d71b526536f2ed /src/gallium/include | |
parent | db5f9c31774691df9239bcbbbf52075a63c08c25 (diff) |
gallium: s/unsigned/enum pipe_shader_type/ for pipe_screen::get_shader_param()
Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_screen.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h index eb2ac65ea4a..1606c2da96f 100644 --- a/src/gallium/include/pipe/p_screen.h +++ b/src/gallium/include/pipe/p_screen.h @@ -97,7 +97,8 @@ struct pipe_screen { * Query a per-shader-stage integer-valued capability/parameter/limit * \param param one of PIPE_CAP_x */ - int (*get_shader_param)( struct pipe_screen *, unsigned shader, enum pipe_shader_cap param ); + int (*get_shader_param)( struct pipe_screen *, enum pipe_shader_type shader, + enum pipe_shader_cap param ); /** * Query an integer-valued capability/parameter/limit for a codec/profile |