mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
0c3dce3ca6
This is NOT READY for general consumption, if you decide to make use of this driver, DO NOT ASK FOR SUPPORT.
31 lines
757 B
C++
31 lines
757 B
C++
#include "CIndirectMonitorContext.h"
|
|
#include "Direct3DDevice.h"
|
|
|
|
CIndirectMonitorContext::CIndirectMonitorContext(_In_ IDDCX_MONITOR monitor, CIndirectDeviceContext * device) :
|
|
m_monitor(monitor),
|
|
m_devContext(device)
|
|
{
|
|
}
|
|
|
|
CIndirectMonitorContext::~CIndirectMonitorContext()
|
|
{
|
|
m_thread.reset();
|
|
}
|
|
|
|
void CIndirectMonitorContext::AssignSwapChain(IDDCX_SWAPCHAIN swapChain, LUID renderAdapter, HANDLE newFrameEvent)
|
|
{
|
|
m_thread.reset();
|
|
auto device = std::make_shared<Direct3DDevice>(renderAdapter);
|
|
if (FAILED(device->Init()))
|
|
{
|
|
WdfObjectDelete(swapChain);
|
|
return;
|
|
}
|
|
|
|
m_thread.reset(new CSwapChainProcessor(m_devContext, swapChain, device, newFrameEvent));
|
|
}
|
|
|
|
void CIndirectMonitorContext::UnassignSwapChain()
|
|
{
|
|
m_thread.reset();
|
|
} |