diff options
author | Michal Krol <michal@vmware.com> | 2010-03-15 15:04:12 +0100 |
---|---|---|
committer | Michal Krol <michal@vmware.com> | 2010-03-15 15:04:12 +0100 |
commit | 3949388ca34c4578455be6db65d140c8e8f2184a (patch) | |
tree | a78031edbace94edec3f9c66bcc96a8206539758 | |
parent | 6b60820fde8596966b1ffdb5d008e94773b2f321 (diff) |
st/mesa: Fix a call to st_get_stobj_sampler_view().
-rw-r--r-- | src/mesa/state_tracker/st_cb_blit.c | 2 |
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); |