diff options
author | Kenneth Graunke <[email protected]> | 2011-05-20 16:28:29 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-05-20 16:33:43 -0700 |
commit | 24de02acaca2ed2e5149a6a026b8707cd0d6d27f (patch) | |
tree | 319187280a1848eb8ae3cbf2b97da92b16578203 /src | |
parent | 5e48560926d43dfa8fbc148d0f1f6a3063fede48 (diff) |
i965: Remove "TXD" from justification of sampler message headers.
The coordinate offsets set in the m1 header are for textureOffset;
they have nothing to do with textureGrad (TXD).
Signed-off-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index add69b16737..eb954c8bf9c 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -1320,7 +1320,7 @@ fs_visitor::emit_texture_gen5(ir_texture *ir, fs_reg dst, fs_reg coordinate, bool header_present = false; if (ir->offset) { - /* The TXD offsets set up by the ir_texture visitor are in the + /* The offsets set up by the ir_texture visitor are in the * m1 header, so we can't go headerless. */ header_present = true; |