diff options
author | Vinson Lee <[email protected]> | 2011-03-11 13:35:06 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-03-11 13:35:06 -0800 |
commit | d17ef8636d9212d92815ffdff092bad3df1af06b (patch) | |
tree | f3e882a8c3da339e85ad7e74d4b2f84296c16b82 /src | |
parent | dee6eafbd2f8acf99da99960572f42fcf473f86a (diff) |
st/python: Clean up fence_finish.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/state_trackers/python/p_context.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/python/p_context.i b/src/gallium/state_trackers/python/p_context.i index 4ccc4c0b3ab..360a4220ea9 100644 --- a/src/gallium/state_trackers/python/p_context.i +++ b/src/gallium/state_trackers/python/p_context.i @@ -403,7 +403,7 @@ error1: $self->pipe->flush($self->pipe, flags | PIPE_FLUSH_RENDER_CACHE, &fence); if(fence) { /* TODO: allow asynchronous operation */ - $self->pipe->screen->fence_finish( $self->pipe->screen, fence, 0, PIPE_TIMEOUT_INFINITE ); + $self->pipe->screen->fence_finish( $self->pipe->screen, fence, PIPE_TIMEOUT_INFINITE ); $self->pipe->screen->fence_reference( $self->pipe->screen, &fence, NULL ); } } |