diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-03-20 19:25:44 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-03-20 19:25:44 +0000 |
commit | f259ea0347754e0e8c93fd16796fc1db72b03372 (patch) | |
tree | ecd8b2f58382f22554735f4f0933d569bdb4c63d /src/gallium/auxiliary | |
parent | e1406c8d2366dccac0037e5329217d1c8c265eaf (diff) |
gallium: remove unused local var
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_simple_shaders.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_simple_shaders.c b/src/gallium/auxiliary/util/u_simple_shaders.c index fca6f11119..442467ecad 100644 --- a/src/gallium/auxiliary/util/u_simple_shaders.c +++ b/src/gallium/auxiliary/util/u_simple_shaders.c @@ -278,7 +278,7 @@ util_make_fragment_passthrough_shader(struct pipe_context *pipe) struct tgsi_full_declaration decl; struct tgsi_full_instruction inst; const uint procType = TGSI_PROCESSOR_FRAGMENT; - uint ti, i; + uint ti; struct pipe_shader_state shader; tokens = (struct tgsi_token *) malloc(maxTokens * sizeof(tokens[0])); |