diff options
author | Brian Paul <[email protected]> | 2017-03-05 12:35:22 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-03-08 08:50:20 -0700 |
commit | 73bafb5ee38964019c3da2000095608a7fb4b554 (patch) | |
tree | 99e2127a15ba720b221d9be2332dad7fa77f6ec6 /src/gallium/include/pipe | |
parent | 1564a768ae534c800f49b1cf9994f2f030381cec (diff) |
gallium: s/unsigned/enum pipe_shader_type/ for get_compiler_options()
Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_screen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h index 1606c2da96f..8b4239c61ae 100644 --- a/src/gallium/include/pipe/p_screen.h +++ b/src/gallium/include/pipe/p_screen.h @@ -319,7 +319,7 @@ struct pipe_screen { */ const void *(*get_compiler_options)(struct pipe_screen *screen, enum pipe_shader_ir ir, - unsigned shader); + enum pipe_shader_type shader); /** * Returns a pointer to a driver-specific on-disk shader cache. If the |