swrast: fix typo in partial derivatives parameter passing
authorBrian Paul <brianp@vmware.com>
Wed, 23 Sep 2009 18:54:14 +0000 (12:54 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 23 Sep 2009 19:36:43 +0000 (13:36 -0600)
src/mesa/swrast/s_fragprog.c

index b71fb9eae97c123e6fff76377ad38f99b7e0cb99..144f78b024acf4b2452de10653bc67fd4907c307 100644 (file)
@@ -108,7 +108,7 @@ fetch_texel_deriv( GLcontext *ctx, const GLfloat texcoord[4],
 
       lambda = _swrast_compute_lambda(texdx[0], texdy[0], /* ds/dx, ds/dy */
                                       texdx[1], texdy[1], /* dt/dx, dt/dy */
-                                      texdx[3], texdy[2], /* dq/dx, dq/dy */
+                                      texdx[3], texdy[3], /* dq/dx, dq/dy */
                                       texW, texH,
                                       texcoord[0], texcoord[1], texcoord[3],
                                       1.0F / texcoord[3]) + lodBias;