Module: Mesa Branch: master Commit: bdd3770b789b7b42619dd485e816df3285e3408d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=bdd3770b789b7b42619dd485e816df3285e3408d
Author: Brian Paul <[email protected]> Date: Mon Apr 1 16:44:01 2013 -0600 draw: use pipe_transfer_unmap() to match pipe_transfer_map() --- src/gallium/auxiliary/draw/draw_pipe_pstipple.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/auxiliary/draw/draw_pipe_pstipple.c b/src/gallium/auxiliary/draw/draw_pipe_pstipple.c index e4c5e73..808c7cd 100644 --- a/src/gallium/auxiliary/draw/draw_pipe_pstipple.c +++ b/src/gallium/auxiliary/draw/draw_pipe_pstipple.c @@ -419,7 +419,7 @@ pstip_update_texture(struct pstip_stage *pstip) } /* unmap */ - pipe->transfer_unmap(pipe, transfer); + pipe_transfer_unmap(pipe, transfer); } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
