mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:30:00 +00:00
Vi: Mark all fences as NO_FENCE in the DequeueBuffer response parcel.
This commit is contained in:
parent
1b64160d83
commit
2662de6e52
1 changed files with 2 additions and 2 deletions
|
@ -288,8 +288,8 @@ protected:
|
||||||
// TODO(Subv): Find out how this Fence is used.
|
// TODO(Subv): Find out how this Fence is used.
|
||||||
BufferProducerFence fence = {};
|
BufferProducerFence fence = {};
|
||||||
fence.is_valid = 1;
|
fence.is_valid = 1;
|
||||||
fence.fences[0].id = 0;
|
for (auto& fence_ : fence.fences)
|
||||||
fence.fences[0].value = 0;
|
fence_.id = -1;
|
||||||
|
|
||||||
Write(slot);
|
Write(slot);
|
||||||
Write<u32_le>(1);
|
Write<u32_le>(1);
|
||||||
|
|
Loading…
Reference in a new issue