void SetupD3D11(IDXGISwapChain *swapChain) { ClearD3D11Data(); DXGI_SWAP_CHAIN_DESC scd; if(SUCCEEDED(swapChain->GetDesc(&scd))) { d3d11CaptureInfo.format = ConvertGIBackBufferFormat(scd.BufferDesc.Format); if(d3d11CaptureInfo.format != GS_UNKNOWNFORMAT) { if( dxgiFormat != scd.BufferDesc.Format || d3d11CaptureInfo.cx != scd.BufferDesc.Width || d3d11CaptureInfo.cy != scd.BufferDesc.Height ) { dxgiFormat = FixCopyTextureFormat(scd.BufferDesc.Format); d3d11CaptureInfo.cx = scd.BufferDesc.Width; d3d11CaptureInfo.cy = scd.BufferDesc.Height; d3d11CaptureInfo.hwndCapture = (DWORD)scd.OutputWindow; bIsMultisampled = scd.SampleDesc.Count > 1; } } } lastTime = 0; OSInitializeTimer(); }
void SetupD3D101(IDXGISwapChain *swapChain) { logOutput << CurrentTimeString() << "setting up d3d10.1 data" << endl; ClearD3D101Data(); DXGI_SWAP_CHAIN_DESC scd; if(SUCCEEDED(swapChain->GetDesc(&scd))) { d3d101CaptureInfo.format = ConvertGIBackBufferFormat(scd.BufferDesc.Format); if(d3d101CaptureInfo.format != GS_UNKNOWNFORMAT) { if( dxgiFormat != scd.BufferDesc.Format || d3d101CaptureInfo.cx != scd.BufferDesc.Width || d3d101CaptureInfo.cy != scd.BufferDesc.Height || d3d101CaptureInfo.hwndCapture != (DWORD)scd.OutputWindow) { dxgiFormat = FixCopyTextureFormat(scd.BufferDesc.Format); d3d101CaptureInfo.cx = scd.BufferDesc.Width; d3d101CaptureInfo.cy = scd.BufferDesc.Height; d3d101CaptureInfo.hwndCapture = (DWORD)scd.OutputWindow; bIsMultisampled = scd.SampleDesc.Count > 1; logOutput << CurrentTimeString() << "found dxgi format (dx10.1) of: " << UINT(dxgiFormat) << ", size: {" << scd.BufferDesc.Width << ", " << scd.BufferDesc.Height << "}, multisampled: " << (bIsMultisampled ? "true" : "false") << endl; } } } lastTime = 0; OSInitializeTimer(); }