Module: Mesa Branch: main Commit: 65591a3b25aaf4adda3adbba666414091c792e6a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=65591a3b25aaf4adda3adbba666414091c792e6a
Author: Erik Faye-Lund <[email protected]> Date: Fri Jun 23 15:35:51 2023 +0200 draw: match type of pipe_draw_start_count_bias::count Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Yonggang Luo <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23833> --- src/gallium/auxiliary/draw/draw_vbuf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/auxiliary/draw/draw_vbuf.h b/src/gallium/auxiliary/draw/draw_vbuf.h index c9e0faac47b..5df2887ed59 100644 --- a/src/gallium/auxiliary/draw/draw_vbuf.h +++ b/src/gallium/auxiliary/draw/draw_vbuf.h @@ -110,13 +110,13 @@ struct vbuf_render { */ void (*draw_elements)(struct vbuf_render *, const ushort *indices, - uint nr_indices); + unsigned nr_indices); /* Draw non-indexed primitives. */ void (*draw_arrays)(struct vbuf_render *, unsigned start, - uint nr); + unsigned nr); /** * Called when vbuf is done with this set of vertices:
