fix comment typos
authorBrian <brian.paul@tungstengraphics.com>
Fri, 8 Feb 2008 21:55:33 +0000 (14:55 -0700)
committerBen Skeggs <skeggsb@gmail.com>
Fri, 15 Feb 2008 02:50:33 +0000 (13:50 +1100)
src/mesa/pipe/tgsi/exec/tgsi_exec.c

index 463ff0d..336ae1c 100644 (file)
@@ -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;