From: Marek Olšák Date: Sun, 2 Apr 2017 00:36:16 +0000 (+0200) Subject: gallium: decrease the size of pipe_vertex_element - 16 -> 8 bytes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=295f4f56cba4c20e51d91f0071eec80642643855;p=mesa.git gallium: decrease the size of pipe_vertex_element - 16 -> 8 bytes Reviewed-by: Nicolai Hähnle Reviewed-by: Brian Paul --- diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 79c76484513..45c213795c6 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -609,19 +609,19 @@ struct pipe_stream_output_target struct pipe_vertex_element { /** Offset of this attribute, in bytes, from the start of the vertex */ - unsigned src_offset; - - /** Instance data rate divisor. 0 means this is per-vertex data, - * n means per-instance data used for n consecutive instances (n > 0). - */ - unsigned instance_divisor; + unsigned src_offset:16; /** Which vertex_buffer (as given to pipe->set_vertex_buffer()) does * this attribute live in? */ - unsigned vertex_buffer_index; + unsigned vertex_buffer_index:5; - enum pipe_format src_format; + enum pipe_format src_format:11; + + /** Instance data rate divisor. 0 means this is per-vertex data, + * n means per-instance data used for n consecutive instances (n > 0). + */ + unsigned instance_divisor; };