[D3D12] Change swap chain format to BGRA

This commit is contained in:
Triang3l 2020-08-30 18:59:53 +03:00
parent deff124ce5
commit c5dd7403f0
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ class D3D12Context : public GraphicsContext {
return static_cast<D3D12Provider*>(provider_); return static_cast<D3D12Provider*>(provider_);
} }
static constexpr DXGI_FORMAT kSwapChainFormat = DXGI_FORMAT_R8G8B8A8_UNORM; // The format used by DWM.
static constexpr DXGI_FORMAT kSwapChainFormat = DXGI_FORMAT_B8G8R8A8_UNORM;
ID3D12Resource* GetSwapChainBuffer(uint32_t buffer_index) const { ID3D12Resource* GetSwapChainBuffer(uint32_t buffer_index) const {
return swap_chain_buffers_[buffer_index]; return swap_chain_buffers_[buffer_index];
} }