Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
mesa
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1,892
Issues
1,892
List
Boards
Labels
Milestones
Merge Requests
319
Merge Requests
319
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mesa
mesa
Commits
67f61199
Commit
67f61199
authored
Mar 08, 2011
by
Vinson Lee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
st/python: Add timeout parameter to fence_finish.
This is a follow-up to commit
b39bccbd
. Fixes Linux SCons build.
parent
ac8821ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/gallium/state_trackers/python/p_context.i
src/gallium/state_trackers/python/p_context.i
+1
-1
No files found.
src/gallium/state_trackers/python/p_context.i
View file @
67f61199
...
...
@@ -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
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment