st/python: Add timeout parameter to fence_finish.

This is a follow-up to commit b39bccbd4e.

Fixes Linux SCons build.
This commit is contained in:
Vinson Lee 2011-03-08 16:18:16 -08:00
parent ac8821ffe2
commit 67f61199c2
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
$self->pipe->screen->fence_finish( $self->pipe->screen, fence, 0, PIPE_TIMEOUT_INFINITE );
$self->pipe->screen->fence_reference( $self->pipe->screen, &fence, NULL );
}
}