From be4782b0625d6423e86fea6c39040e09ccbc82eb Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sun, 30 Mar 2025 19:04:04 +1100 Subject: [PATCH] [idd] driver: fix header --- idd/LGIdd/CSwapChainProcessor.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/idd/LGIdd/CSwapChainProcessor.h b/idd/LGIdd/CSwapChainProcessor.h index 2844659a..44fa4edd 100644 --- a/idd/LGIdd/CSwapChainProcessor.h +++ b/idd/LGIdd/CSwapChainProcessor.h @@ -51,11 +51,12 @@ private: Wrappers::Event m_terminateEvent; static DWORD CALLBACK _SwapChainThread(LPVOID arg); - + void SwapChainThread(); void SwapChainThreadCore(); - static void CompletionFunction(CD3D12CommandQueue * queue, void * param1, void * param2); + static void CompletionFunction( + CD3D12CommandQueue * queue, bool result, void * param1, void * param2); bool SwapChainNewFrame(ComPtr acquiredBuffer); public: @@ -65,4 +66,4 @@ public: CIndirectDeviceContext * GetDevice() { return m_devContext; } std::shared_ptr GetD3D12Device() { return m_dx12Device; } -}; \ No newline at end of file +};