summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_cb_blit.c
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-03-15 15:04:12 +0100
committerMichal Krol <michal@vmware.com>2010-03-15 15:04:12 +0100
commit3949388ca34c4578455be6db65d140c8e8f2184a (patch)
treea78031edbace94edec3f9c66bcc96a8206539758 /src/mesa/state_tracker/st_cb_blit.c
parent6b60820fde8596966b1ffdb5d008e94773b2f321 (diff)
st/mesa: Fix a call to st_get_stobj_sampler_view().
Diffstat (limited to 'src/mesa/state_tracker/st_cb_blit.c')
-rw-r--r--src/mesa/state_tracker/st_cb_blit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_blit.c b/src/mesa/state_tracker/st_cb_blit.c
index abf0ac0fc8..06b0a18fd2 100644
--- a/src/mesa/state_tracker/st_cb_blit.c
+++ b/src/mesa/state_tracker/st_cb_blit.c
@@ -133,7 +133,7 @@ st_BlitFramebuffer(GLcontext *ctx,
return;
util_blit_pixels(st->blit,
- srcSurf, st_get_stobj_sampler_view(srcObj, pipe),
+ srcSurf, st_get_stobj_sampler_view(srcObj),
srcX0, srcY0, srcX1, srcY1,
dstSurf, dstX0, dstY0, dstX1, dstY1,
0.0, pFilter);