| 7 | #include <glad/glad_wgl.h> |
| 8 | |
| 9 | TextureD3D::TextureD3D(ID3D11Device* pDevice) |
| 10 | : m_pDevice(pDevice) |
| 11 | , m_data() |
| 12 | , m_hInteropDevice(nullptr) |
| 13 | , m_hInteropTarget(nullptr) |
| 14 | { |
| 15 | } |
| 16 | |
| 17 | TextureD3D::TextureD3D(ID3D12CommandQueue* pQueue) |
| 18 | : m_pQueue(pQueue) |
nothing calls this directly
no outgoing calls
no test coverage detected