summaryrefslogtreecommitdiff
path: root/src/gallium/include
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2010-07-21 15:39:09 +0100
committerKeith Whitwell <keithw@vmware.com>2010-07-21 16:30:38 +0100
commitd350695a6b86caaee6b2bd1d64b48a26159a8e95 (patch)
treedd3200993b29c19a964ca0516af50bdf60901d0e /src/gallium/include
parentec0e7b16bb6753bedbd611a97062934bfca03aa7 (diff)
gallium: remove pointless bitfield restrction in pipe_vertex_element
This used to be a somewhat packed struct, but no longer. Remove the last remaining bitfield tag.
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/pipe/p_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h
index 197b64e8f1..44ffa26be7 100644
--- a/src/gallium/include/pipe/p_state.h
+++ b/src/gallium/include/pipe/p_state.h
@@ -419,7 +419,7 @@ struct pipe_vertex_element
/** Which vertex_buffer (as given to pipe->set_vertex_buffer()) does
* this attribute live in?
*/
- unsigned vertex_buffer_index:8;
+ unsigned vertex_buffer_index;
enum pipe_format src_format;
};