mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
glthread: remove extra _mesa_glthread_finish() from generated code
The other user of print_sync_dispatch() was ending up with code that
looked like:
_mesa_glthread_finish(ctx);
_mesa_glthread_restore_dispatch(ctx);
_mesa_glthread_finish(ctx);
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
8d02916e0c
commit
d0cec1fce1
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,6 @@ class PrintCode(gl_XML.gl_print_base):
|
|||
out('return {0};'.format(call))
|
||||
|
||||
def print_sync_dispatch(self, func):
|
||||
out('_mesa_glthread_finish(ctx);')
|
||||
out('debug_print_sync_fallback("{0}");'.format(func.name))
|
||||
self.print_sync_call(func)
|
||||
|
||||
|
|
@ -259,6 +258,7 @@ class PrintCode(gl_XML.gl_print_base):
|
|||
if need_fallback_sync:
|
||||
out('fallback_to_sync:')
|
||||
with indent():
|
||||
out('_mesa_glthread_finish(ctx);')
|
||||
self.print_sync_dispatch(func)
|
||||
|
||||
out('}')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue