https://bugs.freedesktop.org/show_bug.cgi?id=101556
--- Comment #1 from Florian Link <[email protected]> ---
I reverted the commit from
https://github.com/mesa3d/mesa/commit/043883647acaee0b2c67c1c6b496404ebb4e8d67
and then the crash is gone. The problem seems to be:
stw_context.c: line 442:
if (old_ctx->shared) {
struct pipe_fence_handle *fence = NULL;
old_ctx->st->flush(old_ctx->st,
ST_FLUSH_FRONT | ST_FLUSH_WAIT, &fence);
}
else {
old_ctx->st->flush(old_ctx->st, ST_FLUSH_FRONT, NULL);
}
if I change that back to just:
old_ctx->st->flush(old_ctx->st, ST_FLUSH_FRONT, NULL);
then the crash is gone. Since the fence pointer points to NULL and stays NULL,
the old_ctx->st->flush crashes.
--
You are receiving this mail because:
You are the assignee for the bug.
You are the QA Contact for the bug._______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev