mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 18:48:28 +02:00
tu/msm: Fix timeline semaphore support
Fixes:daefc6e2a4("turnip: prep work for timeline semaphore support") Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25981> (cherry picked from commit79b907f941)
This commit is contained in:
parent
a8e266b7b3
commit
2bd7e293bf
2 changed files with 3 additions and 1 deletions
|
|
@ -1254,7 +1254,7 @@
|
|||
"description": "tu/msm: Fix timeline semaphore support",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "daefc6e2a40b70f0665b21cf7688e711b4b1ae09",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -1028,6 +1028,7 @@ msm_queue_submit(struct tu_queue *queue, struct vk_queue_submit *submit)
|
|||
in_syncobjs[nr_in_syncobjs++] = (struct drm_msm_gem_submit_syncobj) {
|
||||
.handle = tu_syncobj_from_vk_sync(sync),
|
||||
.flags = 0,
|
||||
.point = submit->waits[i].wait_value,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -1037,6 +1038,7 @@ msm_queue_submit(struct tu_queue *queue, struct vk_queue_submit *submit)
|
|||
out_syncobjs[nr_out_syncobjs++] = (struct drm_msm_gem_submit_syncobj) {
|
||||
.handle = tu_syncobj_from_vk_sync(sync),
|
||||
.flags = 0,
|
||||
.point = submit->signals[i].signal_value,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue