summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-02-08 14:55:33 -0700
committerBen Skeggs <skeggsb@gmail.com>2008-02-15 13:50:33 +1100
commitfa0a651a3e849908a020b40f723ed347b2054dbf (patch)
tree8e18addb32805c3527b97e84fc2672d86ae9ca85 /src/mesa
parent44bb16c4d45584384f6fbbcc7207016421200891 (diff)
fix comment typos
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/pipe/tgsi/exec/tgsi_exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_exec.c b/src/mesa/pipe/tgsi/exec/tgsi_exec.c
index 463ff0d9da..336ae1c8b6 100644
--- a/src/mesa/pipe/tgsi/exec/tgsi_exec.c
+++ b/src/mesa/pipe/tgsi/exec/tgsi_exec.c
@@ -2010,7 +2010,7 @@ exec_instruction(
case TGSI_OPCODE_TXB:
/* Texture lookup with lod bias */
- /* src[0] = texcoord (src[0].w = load bias) */
+ /* src[0] = texcoord (src[0].w = LOD bias) */
/* src[1] = sampler unit */
exec_tex(mach, inst, TRUE);
break;
@@ -2026,7 +2026,7 @@ exec_instruction(
case TGSI_OPCODE_TXL:
/* Texture lookup with explit LOD */
- /* src[0] = texcoord (src[0].w = load bias) */
+ /* src[0] = texcoord (src[0].w = LOD) */
/* src[1] = sampler unit */
exec_tex(mach, inst, TRUE);
break;