From: Brian Paul Date: Tue, 25 Mar 2003 00:00:29 +0000 (+0000) Subject: store correct EXP result X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af1bfb7281eb8175adb7bb9774aeafa020e3831b;p=mesa.git store correct EXP result --- diff --git a/src/mesa/main/nvvertexec.c b/src/mesa/main/nvvertexec.c index 07029273544..6ef6cce1d77 100644 --- a/src/mesa/main/nvvertexec.c +++ b/src/mesa/main/nvvertexec.c @@ -1,4 +1,4 @@ -/* $Id: nvvertexec.c,v 1.3 2003/03/04 16:33:55 brianp Exp $ */ +/* $Id: nvvertexec.c,v 1.4 2003/03/25 00:00:29 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -415,7 +415,7 @@ _mesa_exec_vertex_program(GLcontext *ctx, const struct vertex_program *program) q[2] = (GLfloat) (q[0] * LOG2(q[1])); q[3] = 1.0F; } - store_vector4( &inst->DstReg, machine, t ); + store_vector4( &inst->DstReg, machine, q ); } break; case VP_OPCODE_LOG: