diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-02-08 14:55:33 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-02-08 15:13:49 -0700 |
commit | 9f9c3b752a82d216d4655d6dcd07361f66f8a4c8 (patch) | |
tree | be12144e8bd0c253dd5d319926c959b0da4d8213 | |
parent | 62abcb9aacc33218d0143a743c738435794b32a9 (diff) |
fix comment typos
-rw-r--r-- | src/mesa/pipe/tgsi/exec/tgsi_exec.c | 4 |
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; |