From 46be65c681b251beced67abfabbb86117b589d44 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 26 May 2016 07:17:50 -0600 Subject: [PATCH] gallium: change pipe_draw_info::mode to be pipe_prim_type MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Makes debugging with gdb a little nicer. Reviewed-by: Marek Olšák Reviewed-by: Roland Scheidegger --- src/gallium/include/pipe/p_state.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index eacf9bbe68b..396f563bd79 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -617,7 +617,7 @@ struct pipe_draw_info { boolean indexed; /**< use index buffer */ - unsigned mode; /**< the mode of the primitive */ + enum pipe_prim_type mode; /**< the mode of the primitive */ unsigned start; /**< the index of the first vertex */ unsigned count; /**< number of vertices */ -- 2.11.0