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/drivers/noop | |
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/drivers/noop')
-rw-r--r-- | src/gallium/drivers/noop/noop_pipe.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/noop/noop_pipe.c b/src/gallium/drivers/noop/noop_pipe.c index db2375e2e5d..d1e795dab16 100644 --- a/src/gallium/drivers/noop/noop_pipe.c +++ b/src/gallium/drivers/noop/noop_pipe.c @@ -391,7 +391,9 @@ static float noop_get_paramf(struct pipe_screen* pscreen, return screen->get_paramf(screen, param); } -static int noop_get_shader_param(struct pipe_screen* pscreen, unsigned shader, enum pipe_shader_cap param) +static int noop_get_shader_param(struct pipe_screen* pscreen, + enum pipe_shader_type shader, + enum pipe_shader_cap param) { struct pipe_screen *screen = ((struct noop_pipe_screen*)pscreen)->oscreen; |