summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2012-01-14 23:31:03 -0800
committerVinson Lee <vlee@freedesktop.org>2012-01-28 11:22:48 -0800
commit743432039ccd4c4af03aa4ef274a7922f871bc38 (patch)
tree26563e162e233ab6cd1c8af360183a1dd5f4c526 /src/gallium/auxiliary
parent1a9d2b764295f561aa9c24f504bd8cf3f95e7f54 (diff)
draw: Remove unused variables.
Fix this GCC warning. draw_pipe_clip.c: In function ‘interp’: draw_pipe_clip.c:122:13: warning: variable ‘clip_dist’ set but not used [-Wunused-but-set-variable] Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/draw/draw_pipe_clip.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pipe_clip.c b/src/gallium/auxiliary/draw/draw_pipe_clip.c
index f7019725fdf..4da4d653d99 100644
--- a/src/gallium/auxiliary/draw/draw_pipe_clip.c
+++ b/src/gallium/auxiliary/draw/draw_pipe_clip.c
@@ -119,12 +119,8 @@ static void interp( const struct clip_stage *clip,
const unsigned nr_attrs = draw_current_shader_outputs(clip->stage.draw);
const unsigned pos_attr = draw_current_shader_position_output(clip->stage.draw);
const unsigned clip_attr = draw_current_shader_clipvertex_output(clip->stage.draw);
- unsigned clip_dist[2];
unsigned j;
- clip_dist[0] = draw_current_shader_clipdistance_output(clip->stage.draw, 0);
- clip_dist[1] = draw_current_shader_clipdistance_output(clip->stage.draw, 1);
-
/* Vertex header.
*/
dst->clipmask = 0;