diff options
author | Marek Olšák <[email protected]> | 2018-11-10 01:17:13 -0500 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-11-20 21:17:38 -0500 |
commit | 247d5a8e94787aad8a91f447853539f7932a99f5 (patch) | |
tree | 20eda9e5165f41ef093c60295aea2f1f64302143 /src/mesa/main/glthread.h | |
parent | 25d95ed5359b88b297277fceac7c33f35d1d59ba (diff) |
mesa/glthread: pass the function name to _mesa_glthread_restore_dispatch
If you insert printf there, you'll know why glthread was disabled.
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/glthread.h')
-rw-r--r-- | src/mesa/main/glthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/glthread.h b/src/mesa/main/glthread.h index 8cd5d022674..59cb95feb4a 100644 --- a/src/mesa/main/glthread.h +++ b/src/mesa/main/glthread.h @@ -99,7 +99,7 @@ struct glthread_state void _mesa_glthread_init(struct gl_context *ctx); void _mesa_glthread_destroy(struct gl_context *ctx); -void _mesa_glthread_restore_dispatch(struct gl_context *ctx); +void _mesa_glthread_restore_dispatch(struct gl_context *ctx, const char *func); void _mesa_glthread_flush_batch(struct gl_context *ctx); void _mesa_glthread_finish(struct gl_context *ctx); |