summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_vp_build.c
diff options
context:
space:
mode:
authorXiang, Haihao <haihao.xiang@intel.com>2007-08-31 16:50:48 +0800
committerXiang, Haihao <haihao.xiang@intel.com>2007-08-31 16:50:48 +0800
commit214347fdb4c30dc8bac5d4b9a823458709bc53ea (patch)
tree2eb2d4d146e330e5dd02204b9bff43ba70d6b19d /src/mesa/tnl/t_vp_build.c
parentb47c9f8c915ae4ca8c7fa5ee3b6b64f17c38b569 (diff)
i965: Calculate the positional light in homogeneous coordinates.
fix bug#11009
Diffstat (limited to 'src/mesa/tnl/t_vp_build.c')
-rw-r--r--src/mesa/tnl/t_vp_build.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c
index ee1a2498b3..336f3c7a2a 100644
--- a/src/mesa/tnl/t_vp_build.c
+++ b/src/mesa/tnl/t_vp_build.c
@@ -960,6 +960,11 @@ static void build_lighting( struct tnl_program *p )
VPpli = get_temp(p);
half = get_temp(p);
+ /* In homogeneous object coordinates
+ */
+ emit_op1(p, OPCODE_RCP, dist, 0, swizzle1(Ppli, W));
+ emit_op2(p, OPCODE_MUL, Ppli, 0, Ppli, dist);
+
/* Calulate VPpli vector
*/
emit_op2(p, OPCODE_SUB, VPpli, 0, Ppli, V);