diff options
author | Timothy Arceri <[email protected]> | 2017-06-06 15:08:16 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-06-07 14:53:38 +1000 |
commit | d0cec1fce1697f9c9c99eb1e3fa8d3fa1fd86b21 (patch) | |
tree | f1b37ed2d1990d7b3b970f8a24e9142c20cd94b7 | |
parent | 8d02916e0c083f57bc7dfd886333f099763bd998 (diff) |
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 <[email protected]>
-rw-r--r-- | src/mapi/glapi/gen/gl_marshal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/gl_marshal.py b/src/mapi/glapi/gen/gl_marshal.py index 51475e17adf..f52b9b7b810 100644 --- a/src/mapi/glapi/gen/gl_marshal.py +++ b/src/mapi/glapi/gen/gl_marshal.py @@ -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('}') |