softpipe: fix s/t/p typos
authorBrian Paul <brianp@vmware.com>
Fri, 21 Aug 2009 17:40:33 +0000 (11:40 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 21 Aug 2009 17:40:33 +0000 (11:40 -0600)
src/gallium/drivers/softpipe/sp_tex_sample.c

index 7bc689a298f7918e839d9ccefae0363b641ab53b..a626731105244edc7ffd60fe9401cfa3ec00b87f 100644 (file)
@@ -990,7 +990,7 @@ img_filter_2d_linear(struct tgsi_sampler *tgsi_sampler,
    assert(width > 0);
 
    samp->linear_texcoord_s(s, width,  x0, x1, xw);
-   samp->linear_texcoord_s(t, height, y0, y1, yw);
+   samp->linear_texcoord_t(t, height, y0, y1, yw);
 
    for (j = 0; j < QUAD_SIZE; j++) {
       float tx[4][4]; /* texels */
@@ -1035,8 +1035,8 @@ img_filter_3d_linear(struct tgsi_sampler *tgsi_sampler,
    assert(depth > 0);
 
    samp->linear_texcoord_s(s, width,  x0, x1, xw);
-   samp->linear_texcoord_s(t, height, y0, y1, yw);
-   samp->linear_texcoord_s(p, depth,  z0, z1, zw);
+   samp->linear_texcoord_t(t, height, y0, y1, yw);
+   samp->linear_texcoord_p(p, depth,  z0, z1, zw);
 
    for (j = 0; j < QUAD_SIZE; j++) {
       float tx0[4][4], tx1[4][4];