mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue