projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a37e0da
)
remove unused lookup array
author
Brian
<brian.paul@tungstengraphics.com>
Fri, 21 Sep 2007 18:39:26 +0000
(12:39 -0600)
committer
Brian
<brian.paul@tungstengraphics.com>
Tue, 25 Sep 2007 20:16:53 +0000
(14:16 -0600)
src/mesa/pipe/draw/draw_twoside.c
patch
|
blob
|
history
diff --git
a/src/mesa/pipe/draw/draw_twoside.c
b/src/mesa/pipe/draw/draw_twoside.c
index 26d26e659e1743f94a81e72b602291435456466a..7f0cb98b30bd987f3352a76d703217ecbaf8ccee 100644
(file)
--- a/
src/mesa/pipe/draw/draw_twoside.c
+++ b/
src/mesa/pipe/draw/draw_twoside.c
@@
-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;
}