mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-14 04:29:15 +01:00
[dxvk] Initialize DxvkSubmitInfo properly
We don't use the semaphore value here, but it shouldn't contain undefined data.
This commit is contained in:
parent
f385b4bb47
commit
3c38bdbd0e
@ -268,8 +268,8 @@ namespace dxvk {
|
||||
|
||||
void DxvkDevice::submitCommandList(
|
||||
const Rc<DxvkCommandList>& commandList) {
|
||||
DxvkSubmitInfo submitInfo;
|
||||
submitInfo.cmdList = commandList;
|
||||
DxvkSubmitInfo submitInfo = { };
|
||||
submitInfo.cmdList = commandList;
|
||||
m_submissionQueue.submit(submitInfo);
|
||||
|
||||
std::lock_guard<sync::Spinlock> statLock(m_statLock);
|
||||
|
Loading…
x
Reference in New Issue
Block a user