From b17c66d6bbedd36d39bea11d020d90bbaa3587ad Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sun, 30 Mar 2025 18:59:42 +1100 Subject: [PATCH] [idd] driver: fix failure to intiialize command queue pending --- idd/LGIdd/CD3D12CommandQueue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idd/LGIdd/CD3D12CommandQueue.h b/idd/LGIdd/CD3D12CommandQueue.h index 425ad8c8..1a71ff0e 100644 --- a/idd/LGIdd/CD3D12CommandQueue.h +++ b/idd/LGIdd/CD3D12CommandQueue.h @@ -20,7 +20,7 @@ class CD3D12CommandQueue ComPtr m_cmdList; ComPtr m_fence; - bool m_pending; + bool m_pending = false; HandleT m_event; HANDLE m_waitHandle = INVALID_HANDLE_VALUE; UINT64 m_fenceValue = 0;