gallium: fix tgsi SAMPLE_L opcode to use separate source for explicit lod
authorRoland Scheidegger <sroland@vmware.com>
Tue, 12 Feb 2013 15:41:56 +0000 (16:41 +0100)
committerRoland Scheidegger <sroland@vmware.com>
Tue, 12 Feb 2013 15:51:11 +0000 (16:51 +0100)
commit427d36a22741890a7ce55b6b5bcd40fd4bdd2d35
tree7f6cc467072b0a51068edabbb12dfc25eee080da
parent4bfdef87e66bfb2459af570351798d7754ddfb9f
gallium: fix tgsi SAMPLE_L opcode to use separate source for explicit lod

It looks like using coord.w as explicit lod value is a mistake, most likely
because some dx10 docs had it specified that way. Seems this was changed though:
http://msdn.microsoft.com/en-us/library/windows/desktop/hh447229%28v=vs.85%29.aspx
- let's just hope it doesn't depend on runtime build version or something.
Not only would this need translation (so go against the stated goal these
opcodes should be close to dx10 semantics) but it would prevent usage of this
opcode with cube arrays, which is apparently possible:
http://msdn.microsoft.com/en-us/library/windows/desktop/bb509699%28v=vs.85%29.aspx
(Note not only does this show cube arrays using explicit lod, but also the
confusion with this opcode: it lists an explicit lod parameter value, but then
states last component of location is used as lod).
(For "true" hw drivers, only nv50 had code to handle it, and it appears the
code was already right for the new semantics, though fix up the seemingly
wrong c/d arguments while there.)

v2: fix comment, separate out other changes.

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c
src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
src/gallium/auxiliary/tgsi/tgsi_exec.c
src/gallium/auxiliary/tgsi/tgsi_info.c
src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
src/gallium/docs/source/tgsi.rst
src/gallium/state_trackers/d3d1x/gd3d1x/sm4_to_tgsi.cpp