diff options
author | Matt Turner <[email protected]> | 2013-03-30 21:26:57 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-04-01 13:11:43 -0700 |
commit | e2b40e253b420933ebc504c7fd929168f2afe77d (patch) | |
tree | 1f3f848f7141cb8123674dcb776b3f3e5fe0a959 /src/mesa/drivers | |
parent | 4ee892ee8adfc9624fc6931e7db55a9ab8fdaee1 (diff) |
i965/fs: Fix bad interaction between tex swizzles and textureQueryLOD.
Reported-by: Chris Forbes <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index 8556b56439e..b6fc21849ad 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp @@ -1468,7 +1468,7 @@ fs_visitor::swizzle_result(ir_texture *ir, fs_reg orig_val, int sampler) { this->result = orig_val; - if (ir->op == ir_txs) + if (ir->op == ir_txs || ir->op == ir_lod) return; if (ir->type == glsl_type::float_type) { |