From: Vinson Lee Date: Mon, 20 Dec 2010 19:40:54 +0000 (-0800) Subject: st/python: remove unused 'buf' parameter in pipe_buffer_unmap X-Git-Tag: mesa-7.11-rc1~2981^2~20^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a14f79f801c52ac6d757ec6ab4c90a8cf952912b;p=platform%2Fupstream%2Fmesa.git st/python: remove unused 'buf' parameter in pipe_buffer_unmap This is a follow-up to commit ec51092a72e2dff1e9b1362d813fe4691cda89b7. Fixes SCons build. --- diff --git a/src/gallium/state_trackers/python/p_context.i b/src/gallium/state_trackers/python/p_context.i index 5bdeaa8..d694651 100644 --- a/src/gallium/state_trackers/python/p_context.i +++ b/src/gallium/state_trackers/python/p_context.i @@ -360,7 +360,7 @@ struct st_context { if (!map) goto error2; memcpy(map, vertices, size); - pipe_buffer_unmap(pipe, vbuf, transfer); + pipe_buffer_unmap(pipe, transfer); cso_save_vertex_elements($self->cso);