diff options
author | Brian Paul <[email protected]> | 2016-05-27 18:32:04 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-05-27 18:42:21 -0600 |
commit | 747754f027d2552af352a197346e0876a160a279 (patch) | |
tree | 775187bf9dcb42f9cccd7f5f0b0946c948bd9c39 /src/gallium | |
parent | b93b5935a71279a4b9dc58b01eab8a49e91b815b (diff) |
gallium/util: another s/unsigned/enum pipe_prim_type/ for clang
Trivial.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/indices/u_indices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/indices/u_indices.c b/src/gallium/auxiliary/indices/u_indices.c index 323c971e1ec..cb9e460d010 100644 --- a/src/gallium/auxiliary/indices/u_indices.c +++ b/src/gallium/auxiliary/indices/u_indices.c @@ -78,7 +78,7 @@ u_index_translator(unsigned hw_mask, unsigned in_pv, unsigned out_pv, unsigned prim_restart, - unsigned *out_prim, + enum pipe_prim_type *out_prim, unsigned *out_index_size, unsigned *out_nr, u_translate_func *out_translate) |