diff options
author | Brian Paul <[email protected]> | 2009-09-24 10:52:15 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-24 10:52:15 -0600 |
commit | 7549a8397b310acf672f97a08c8e7d866cdf492c (patch) | |
tree | 98166a8670ad275f1149dc24bf027cd46e03d32f /src/mesa/shader/prog_execute.c | |
parent | a64d4516a0d6219dec0b5b0622215918469faecc (diff) | |
parent | 2acd5de22651a3461c0576107c8e8fab1f01469a (diff) |
Merge branch 'mesa_7_5_branch' into mesa_7_6_branch
Diffstat (limited to 'src/mesa/shader/prog_execute.c')
-rw-r--r-- | src/mesa/shader/prog_execute.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mesa/shader/prog_execute.c b/src/mesa/shader/prog_execute.c index c8a762f8ff7..69b81e724a2 100644 --- a/src/mesa/shader/prog_execute.c +++ b/src/mesa/shader/prog_execute.c @@ -1555,17 +1555,12 @@ _mesa_execute_program(GLcontext * ctx, case OPCODE_TXB: /* GL_ARB_fragment_program only */ /* Texel lookup with LOD bias */ { - const GLuint unit = machine->Samplers[inst->TexSrcUnit]; - const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit]; GLfloat texcoord[4], color[4], lodBias; fetch_vector4(&inst->SrcReg[0], machine, texcoord); /* texcoord[3] is the bias to add to lambda */ - lodBias = texUnit->LodBias + texcoord[3]; - if (texUnit->_Current) { - lodBias += texUnit->_Current->LodBias; - } + lodBias = texcoord[3]; fetch_texel(ctx, machine, inst, texcoord, lodBias, color); |