mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
lavapipe: mark event_storage as volatile
This is spun on in cmd execution so make sure it doesn't get optimised or cached out. Fixes some timeouts in dEQP-VK.api.command_buffers.record_simul_use_primary Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10494>
This commit is contained in:
parent
29ad039d13
commit
eb6d99014f
1 changed files with 1 additions and 1 deletions
|
|
@ -480,7 +480,7 @@ struct lvp_pipeline {
|
|||
|
||||
struct lvp_event {
|
||||
struct vk_object_base base;
|
||||
uint64_t event_storage;
|
||||
volatile uint64_t event_storage;
|
||||
};
|
||||
|
||||
struct lvp_fence {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue