projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec0e7b1
)
gallium: remove pointless bitfield restrction in pipe_vertex_element
author
Keith Whitwell
<keithw@vmware.com>
Wed, 21 Jul 2010 14:39:09 +0000
(15:39 +0100)
committer
Keith Whitwell
<keithw@vmware.com>
Wed, 21 Jul 2010 15:30:38 +0000
(16:30 +0100)
This used to be a somewhat packed struct, but no longer. Remove the
last remaining bitfield tag.
src/gallium/include/pipe/p_state.h
patch
|
blob
|
history
diff --git
a/src/gallium/include/pipe/p_state.h
b/src/gallium/include/pipe/p_state.h
index 197b64e8f1351798fa5d085356feb2f15c71251b..44ffa26be74ad8297864462fd7846f0933446458 100644
(file)
--- 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;
};