swrast: remove an unused-but-set variable

This commit is contained in:
Marek Olšák 2011-07-15 20:06:01 +02:00
parent eca3152de0
commit 3032d064fb
1 changed files with 0 additions and 11 deletions

View File

@ -961,17 +961,6 @@ convert_color_type(SWspan *span, GLenum newType, GLuint output)
static INLINE void
shade_texture_span(struct gl_context *ctx, SWspan *span)
{
GLbitfield inputsRead;
/* Determine which fragment attributes are actually needed */
if (ctx->FragmentProgram._Current) {
inputsRead = ctx->FragmentProgram._Current->Base.InputsRead;
}
else {
/* XXX we could be a bit smarter about this */
inputsRead = ~0;
}
if (ctx->FragmentProgram._Current ||
ctx->ATIFragmentShader._Enabled) {
/* programmable shading */