diff options
author | michal <michal@michal-laptop.(none)> | 2007-10-27 14:41:16 +0100 |
---|---|---|
committer | michal <michal@michal-laptop.(none)> | 2007-10-27 19:04:19 +0100 |
commit | b23350700e476e397fefefa45f77d2a5a33c111a (patch) | |
tree | 900454caec71d07a915e229f2cd79cbcfcca0f06 /src/mesa/pipe | |
parent | f27dcb51f70d6a2efab39770ddeff3d5603deaaa (diff) |
vertex_element::src_format needs 32 bits.
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r-- | src/mesa/pipe/p_state.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h index a61cbaf8e1..0e1a038c2e 100644 --- a/src/mesa/pipe/p_state.h +++ b/src/mesa/pipe/p_state.h @@ -368,7 +368,7 @@ struct pipe_vertex_element unsigned vertex_buffer_index:5; unsigned dst_offset:8; - unsigned src_format:8; /**< PIPE_FORMAT_* */ + unsigned src_format; /**< PIPE_FORMAT_* */ }; |