mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 21:30:09 +01:00
remove unused lookup array
This commit is contained in:
parent
a37e0daeb9
commit
608914aeb0
1 changed files with 0 additions and 7 deletions
|
|
@ -36,9 +36,6 @@
|
|||
struct twoside_stage {
|
||||
struct draw_stage stage;
|
||||
float sign; /**< +1 or -1 */
|
||||
#if 0
|
||||
const unsigned *lookup; /**< vertex attribute positions */
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -164,9 +161,5 @@ struct draw_stage *draw_twoside_stage( struct draw_context *draw )
|
|||
twoside->stage.end = twoside_end;
|
||||
twoside->stage.reset_stipple_counter = twoside_reset_stipple_counter;
|
||||
|
||||
#if 0
|
||||
twoside->lookup = draw->vertex_info.attrib_to_slot;
|
||||
#endif
|
||||
|
||||
return &twoside->stage;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue