2020-04-22 11:13:51 +00:00
|
|
|
#include "d3d11hostdisplay.h"
|
2020-01-10 03:31:12 +00:00
|
|
|
#include "common/assert.h"
|
2020-01-07 04:27:48 +00:00
|
|
|
#include "common/d3d11/shader_compiler.h"
|
2020-01-10 03:31:12 +00:00
|
|
|
#include "common/log.h"
|
2020-02-20 14:22:28 +00:00
|
|
|
#include "frontend-common/display_ps.hlsl.h"
|
|
|
|
#include "frontend-common/display_vs.hlsl.h"
|
2020-04-22 11:13:51 +00:00
|
|
|
#include "qtdisplaywidget.h"
|
2020-01-07 04:27:48 +00:00
|
|
|
#include <array>
|
2020-01-18 08:12:09 +00:00
|
|
|
#include <dxgi1_5.h>
|
2020-01-07 04:27:48 +00:00
|
|
|
#include <imgui.h>
|
|
|
|
#include <imgui_impl_dx11.h>
|
2020-04-22 11:13:51 +00:00
|
|
|
Log_SetChannel(D3D11HostDisplay);
|
2020-01-07 04:27:48 +00:00
|
|
|
|
2020-03-12 03:53:51 +00:00
|
|
|
class D3D11DisplayWidgetTexture : public HostDisplayTexture
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
template<typename T>
|
|
|
|
using ComPtr = Microsoft::WRL::ComPtr<T>;
|
|
|
|
|
2020-03-12 03:53:51 +00:00
|
|
|
D3D11DisplayWidgetTexture(ComPtr<ID3D11Texture2D> texture, ComPtr<ID3D11ShaderResourceView> srv, u32 width,
|
2020-01-07 05:54:37 +00:00
|
|
|
u32 height, bool dynamic)
|
2020-01-07 04:27:48 +00:00
|
|
|
: m_texture(std::move(texture)), m_srv(std::move(srv)), m_width(width), m_height(height), m_dynamic(dynamic)
|
|
|
|
{
|
|
|
|
}
|
2020-03-12 03:53:51 +00:00
|
|
|
~D3D11DisplayWidgetTexture() override = default;
|
2020-01-07 04:27:48 +00:00
|
|
|
|
|
|
|
void* GetHandle() const override { return m_srv.Get(); }
|
|
|
|
u32 GetWidth() const override { return m_width; }
|
|
|
|
u32 GetHeight() const override { return m_height; }
|
|
|
|
|
|
|
|
ID3D11Texture2D* GetD3DTexture() const { return m_texture.Get(); }
|
|
|
|
ID3D11ShaderResourceView* GetD3DSRV() const { return m_srv.Get(); }
|
|
|
|
bool IsDynamic() const { return m_dynamic; }
|
|
|
|
|
2020-03-12 03:53:51 +00:00
|
|
|
static std::unique_ptr<D3D11DisplayWidgetTexture> Create(ID3D11Device* device, u32 width, u32 height,
|
2020-01-07 05:54:37 +00:00
|
|
|
const void* data, u32 data_stride, bool dynamic)
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
const CD3D11_TEXTURE2D_DESC desc(DXGI_FORMAT_R8G8B8A8_UNORM, width, height, 1, 1, D3D11_BIND_SHADER_RESOURCE,
|
|
|
|
dynamic ? D3D11_USAGE_DYNAMIC : D3D11_USAGE_DEFAULT,
|
|
|
|
dynamic ? D3D11_CPU_ACCESS_WRITE : 0, 1, 0, 0);
|
|
|
|
const D3D11_SUBRESOURCE_DATA srd{data, data_stride, data_stride * height};
|
|
|
|
ComPtr<ID3D11Texture2D> texture;
|
|
|
|
HRESULT hr = device->CreateTexture2D(&desc, data ? &srd : nullptr, texture.GetAddressOf());
|
|
|
|
if (FAILED(hr))
|
|
|
|
return {};
|
|
|
|
|
|
|
|
const CD3D11_SHADER_RESOURCE_VIEW_DESC srv_desc(D3D11_SRV_DIMENSION_TEXTURE2D, DXGI_FORMAT_R8G8B8A8_UNORM, 0, 1, 0,
|
|
|
|
1);
|
|
|
|
ComPtr<ID3D11ShaderResourceView> srv;
|
|
|
|
hr = device->CreateShaderResourceView(texture.Get(), &srv_desc, srv.GetAddressOf());
|
|
|
|
if (FAILED(hr))
|
|
|
|
return {};
|
|
|
|
|
2020-03-12 03:53:51 +00:00
|
|
|
return std::make_unique<D3D11DisplayWidgetTexture>(std::move(texture), std::move(srv), width, height, dynamic);
|
2020-01-07 04:27:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ComPtr<ID3D11Texture2D> m_texture;
|
|
|
|
ComPtr<ID3D11ShaderResourceView> m_srv;
|
|
|
|
u32 m_width;
|
|
|
|
u32 m_height;
|
|
|
|
bool m_dynamic;
|
|
|
|
};
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
D3D11HostDisplay::D3D11HostDisplay(QtHostInterface* host_interface) : QtHostDisplay(host_interface) {}
|
2020-01-07 04:27:48 +00:00
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
D3D11HostDisplay::~D3D11HostDisplay() = default;
|
2020-01-07 05:54:37 +00:00
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
HostDisplay::RenderAPI D3D11HostDisplay::GetRenderAPI() const
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
return HostDisplay::RenderAPI::D3D11;
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void* D3D11HostDisplay::GetRenderDevice() const
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
return m_device.Get();
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void* D3D11HostDisplay::GetRenderContext() const
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
return m_context.Get();
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
std::unique_ptr<HostDisplayTexture> D3D11HostDisplay::CreateTexture(u32 width, u32 height, const void* initial_data,
|
|
|
|
u32 initial_data_stride, bool dynamic)
|
2020-02-28 07:01:01 +00:00
|
|
|
{
|
2020-03-12 03:53:51 +00:00
|
|
|
return D3D11DisplayWidgetTexture::Create(m_device.Get(), width, height, initial_data, initial_data_stride, dynamic);
|
2020-01-07 04:27:48 +00:00
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void D3D11HostDisplay::UpdateTexture(HostDisplayTexture* texture, u32 x, u32 y, u32 width, u32 height,
|
|
|
|
const void* texture_data, u32 texture_data_stride)
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
2020-03-12 03:53:51 +00:00
|
|
|
D3D11DisplayWidgetTexture* d3d11_texture = static_cast<D3D11DisplayWidgetTexture*>(texture);
|
2020-01-07 04:27:48 +00:00
|
|
|
if (!d3d11_texture->IsDynamic())
|
|
|
|
{
|
|
|
|
const CD3D11_BOX dst_box(x, y, 0, x + width, y + height, 1);
|
2020-03-12 03:53:51 +00:00
|
|
|
m_context->UpdateSubresource(d3d11_texture->GetD3DTexture(), 0, &dst_box, texture_data, texture_data_stride,
|
|
|
|
texture_data_stride * height);
|
2020-01-07 04:27:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
D3D11_MAPPED_SUBRESOURCE sr;
|
|
|
|
HRESULT hr = m_context->Map(d3d11_texture->GetD3DTexture(), 0, D3D11_MAP_WRITE_DISCARD, 0, &sr);
|
|
|
|
if (FAILED(hr))
|
|
|
|
Panic("Failed to map dynamic host display texture");
|
|
|
|
|
|
|
|
char* dst_ptr = static_cast<char*>(sr.pData) + (y * sr.RowPitch) + (x * sizeof(u32));
|
2020-03-12 03:53:51 +00:00
|
|
|
const char* src_ptr = static_cast<const char*>(texture_data);
|
|
|
|
if (sr.RowPitch == texture_data_stride)
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
2020-03-12 03:53:51 +00:00
|
|
|
std::memcpy(dst_ptr, src_ptr, texture_data_stride * height);
|
2020-01-07 04:27:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (u32 row = 0; row < height; row++)
|
|
|
|
{
|
|
|
|
std::memcpy(dst_ptr, src_ptr, width * sizeof(u32));
|
2020-03-12 03:53:51 +00:00
|
|
|
src_ptr += texture_data_stride;
|
2020-01-07 04:27:48 +00:00
|
|
|
dst_ptr += sr.RowPitch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_context->Unmap(d3d11_texture->GetD3DTexture(), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
bool D3D11HostDisplay::DownloadTexture(const void* texture_handle, u32 x, u32 y, u32 width, u32 height, void* out_data,
|
|
|
|
u32 out_data_stride)
|
2020-03-15 14:03:49 +00:00
|
|
|
{
|
|
|
|
ID3D11ShaderResourceView* srv =
|
|
|
|
const_cast<ID3D11ShaderResourceView*>(static_cast<const ID3D11ShaderResourceView*>(texture_handle));
|
|
|
|
ID3D11Resource* srv_resource;
|
|
|
|
D3D11_SHADER_RESOURCE_VIEW_DESC srv_desc;
|
|
|
|
srv->GetResource(&srv_resource);
|
|
|
|
srv->GetDesc(&srv_desc);
|
|
|
|
|
|
|
|
if (!m_readback_staging_texture.EnsureSize(m_context.Get(), width, height, srv_desc.Format, false))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
m_readback_staging_texture.CopyFromTexture(m_context.Get(), srv_resource, 0, x, y, 0, 0, width, height);
|
|
|
|
return m_readback_staging_texture.ReadPixels<u32>(m_context.Get(), 0, 0, width, height, out_data_stride / sizeof(u32),
|
|
|
|
static_cast<u32*>(out_data));
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void D3D11HostDisplay::SetVSync(bool enabled)
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
m_vsync = enabled;
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
bool D3D11HostDisplay::hasDeviceContext() const
|
2020-02-15 15:14:28 +00:00
|
|
|
{
|
|
|
|
return static_cast<bool>(m_device);
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
bool D3D11HostDisplay::createDeviceContext(bool debug_device)
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
2020-03-12 03:53:51 +00:00
|
|
|
UINT create_flags = 0;
|
|
|
|
if (debug_device)
|
|
|
|
create_flags |= D3D11_CREATE_DEVICE_DEBUG;
|
|
|
|
|
|
|
|
HRESULT hr = D3D11CreateDevice(nullptr, D3D_DRIVER_TYPE_HARDWARE, nullptr, create_flags, nullptr, 0,
|
|
|
|
D3D11_SDK_VERSION, m_device.GetAddressOf(), nullptr, m_context.GetAddressOf());
|
|
|
|
|
2020-01-08 04:00:28 +00:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
2020-03-12 03:53:51 +00:00
|
|
|
Log_ErrorPrintf("Failed to create D3D device: 0x%08X", hr);
|
2020-01-08 04:00:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-26 14:53:17 +00:00
|
|
|
if (debug_device && IsDebuggerPresent())
|
2020-03-12 03:53:51 +00:00
|
|
|
{
|
|
|
|
ComPtr<ID3D11InfoQueue> info;
|
|
|
|
hr = m_device.As(&info);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
info->SetBreakOnSeverity(D3D11_MESSAGE_SEVERITY_ERROR, TRUE);
|
|
|
|
info->SetBreakOnSeverity(D3D11_MESSAGE_SEVERITY_WARNING, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// we need the specific factory for the device, otherwise MakeWindowAssociation() is flaky.
|
|
|
|
ComPtr<IDXGIDevice> dxgi_device;
|
|
|
|
ComPtr<IDXGIAdapter> dxgi_adapter;
|
|
|
|
if (FAILED(m_device.As(&dxgi_device)) || FAILED(dxgi_device->GetParent(IID_PPV_ARGS(dxgi_adapter.GetAddressOf()))) ||
|
|
|
|
FAILED(dxgi_adapter->GetParent(IID_PPV_ARGS(m_dxgi_factory.GetAddressOf()))))
|
|
|
|
{
|
|
|
|
Log_WarningPrint("Failed to get parent adapter/device/factory");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
DXGI_ADAPTER_DESC adapter_desc;
|
|
|
|
if (SUCCEEDED(dxgi_adapter->GetDesc(&adapter_desc)))
|
|
|
|
{
|
|
|
|
char adapter_name_buffer[128];
|
|
|
|
const int name_length =
|
|
|
|
WideCharToMultiByte(CP_UTF8, 0, adapter_desc.Description, static_cast<int>(std::wcslen(adapter_desc.Description)),
|
|
|
|
adapter_name_buffer, countof(adapter_name_buffer), 0, nullptr);
|
|
|
|
if (name_length >= 0)
|
|
|
|
{
|
|
|
|
adapter_name_buffer[name_length] = 0;
|
|
|
|
Log_InfoPrintf("D3D Adapter: %s", adapter_name_buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-18 08:12:09 +00:00
|
|
|
m_allow_tearing_supported = false;
|
|
|
|
ComPtr<IDXGIFactory5> dxgi_factory5;
|
2020-03-12 03:53:51 +00:00
|
|
|
hr = m_dxgi_factory.As(&dxgi_factory5);
|
2020-01-18 08:12:09 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
BOOL allow_tearing_supported = false;
|
|
|
|
hr = dxgi_factory5->CheckFeatureSupport(DXGI_FEATURE_PRESENT_ALLOW_TEARING, &allow_tearing_supported,
|
|
|
|
sizeof(allow_tearing_supported));
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
m_allow_tearing_supported = (allow_tearing_supported == TRUE);
|
|
|
|
}
|
|
|
|
|
2020-03-12 03:53:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void D3D11HostDisplay::destroyDeviceContext()
|
2020-03-12 03:53:51 +00:00
|
|
|
{
|
2020-04-22 11:13:51 +00:00
|
|
|
QtHostDisplay::destroyDeviceContext();
|
2020-03-12 03:53:51 +00:00
|
|
|
m_swap_chain.Reset();
|
|
|
|
m_context.Reset();
|
|
|
|
m_device.Reset();
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
bool D3D11HostDisplay::shouldUseFlipModelSwapChain() const
|
2020-03-12 03:53:51 +00:00
|
|
|
{
|
2020-04-08 14:14:19 +00:00
|
|
|
// For some reason DXGI gets stuck waiting for some kernel object when the Qt window has a parent (render-to-main) on
|
|
|
|
// some computers, unless the window is completely occluded. The legacy swap chain mode does not have this problem.
|
2020-04-22 11:13:51 +00:00
|
|
|
return m_widget->parent() == nullptr;
|
2020-04-08 14:14:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
bool D3D11HostDisplay::createSurface()
|
2020-04-08 14:14:19 +00:00
|
|
|
{
|
|
|
|
m_using_flip_model_swap_chain = shouldUseFlipModelSwapChain();
|
2020-03-12 03:53:51 +00:00
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
const HWND window_hwnd = reinterpret_cast<HWND>(m_widget->winId());
|
|
|
|
RECT client_rc{};
|
|
|
|
GetClientRect(window_hwnd, &client_rc);
|
|
|
|
m_window_width = client_rc.right - client_rc.left;
|
|
|
|
m_window_height = client_rc.bottom - client_rc.top;
|
|
|
|
|
2020-01-07 04:27:48 +00:00
|
|
|
DXGI_SWAP_CHAIN_DESC swap_chain_desc = {};
|
|
|
|
swap_chain_desc.BufferDesc.Width = m_window_width;
|
|
|
|
swap_chain_desc.BufferDesc.Height = m_window_height;
|
|
|
|
swap_chain_desc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
|
|
|
|
swap_chain_desc.SampleDesc.Count = 1;
|
|
|
|
swap_chain_desc.BufferCount = 3;
|
|
|
|
swap_chain_desc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
|
2020-04-22 11:13:51 +00:00
|
|
|
swap_chain_desc.OutputWindow = window_hwnd;
|
2020-01-07 04:27:48 +00:00
|
|
|
swap_chain_desc.Windowed = TRUE;
|
2020-04-08 14:14:19 +00:00
|
|
|
swap_chain_desc.SwapEffect = m_using_flip_model_swap_chain ? DXGI_SWAP_EFFECT_FLIP_DISCARD : DXGI_SWAP_EFFECT_DISCARD;
|
2020-01-07 04:27:48 +00:00
|
|
|
|
2020-04-08 14:14:19 +00:00
|
|
|
m_using_allow_tearing = (m_allow_tearing_supported && m_using_flip_model_swap_chain);
|
|
|
|
if (m_using_allow_tearing)
|
2020-01-18 08:12:09 +00:00
|
|
|
swap_chain_desc.Flags = DXGI_SWAP_CHAIN_FLAG_ALLOW_TEARING;
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
Log_InfoPrintf("Creating a %dx%d %s %s swap chain", m_window_width, m_window_height,
|
|
|
|
m_using_flip_model_swap_chain ? "flip-discard" : "discard",
|
|
|
|
swap_chain_desc.Windowed ? "windowed" : "full-screen");
|
|
|
|
|
2020-04-08 14:14:19 +00:00
|
|
|
HRESULT hr = m_dxgi_factory->CreateSwapChain(m_device.Get(), &swap_chain_desc, m_swap_chain.GetAddressOf());
|
|
|
|
if (FAILED(hr) && m_using_flip_model_swap_chain)
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
Log_WarningPrintf("Failed to create a flip-discard swap chain, trying discard.");
|
|
|
|
swap_chain_desc.SwapEffect = DXGI_SWAP_EFFECT_DISCARD;
|
2020-01-18 08:12:09 +00:00
|
|
|
swap_chain_desc.Flags = 0;
|
2020-04-08 14:14:19 +00:00
|
|
|
m_using_flip_model_swap_chain = false;
|
|
|
|
m_using_allow_tearing = false;
|
2020-01-18 08:12:09 +00:00
|
|
|
|
2020-03-12 03:53:51 +00:00
|
|
|
hr = m_dxgi_factory->CreateSwapChain(m_device.Get(), &swap_chain_desc, m_swap_chain.GetAddressOf());
|
2020-01-08 04:00:28 +00:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
Log_ErrorPrintf("CreateSwapChain failed: 0x%08X", hr);
|
|
|
|
return false;
|
|
|
|
}
|
2020-01-07 04:27:48 +00:00
|
|
|
}
|
|
|
|
|
2020-04-08 14:14:19 +00:00
|
|
|
hr = m_dxgi_factory->MakeWindowAssociation(swap_chain_desc.OutputWindow, DXGI_MWA_NO_WINDOW_CHANGES);
|
2020-02-24 09:19:20 +00:00
|
|
|
if (FAILED(hr))
|
|
|
|
Log_WarningPrintf("MakeWindowAssociation() to disable ALT+ENTER failed");
|
|
|
|
|
2020-03-12 03:53:51 +00:00
|
|
|
if (!createSwapChainRTV())
|
2020-04-22 11:13:51 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
emit m_widget->windowResizedEvent(m_window_width, m_window_height);
|
|
|
|
return true;
|
2020-01-07 05:54:37 +00:00
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
bool D3D11HostDisplay::createSwapChainRTV()
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
ComPtr<ID3D11Texture2D> backbuffer;
|
|
|
|
HRESULT hr = m_swap_chain->GetBuffer(0, IID_PPV_ARGS(backbuffer.GetAddressOf()));
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
Log_ErrorPrintf("GetBuffer for RTV failed: 0x%08X", hr);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
D3D11_TEXTURE2D_DESC backbuffer_desc;
|
|
|
|
backbuffer->GetDesc(&backbuffer_desc);
|
|
|
|
|
|
|
|
CD3D11_RENDER_TARGET_VIEW_DESC rtv_desc(D3D11_RTV_DIMENSION_TEXTURE2D, backbuffer_desc.Format, 0, 0,
|
|
|
|
backbuffer_desc.ArraySize);
|
|
|
|
hr = m_device->CreateRenderTargetView(backbuffer.Get(), &rtv_desc, m_swap_chain_rtv.GetAddressOf());
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
Log_ErrorPrintf("CreateRenderTargetView for swap chain failed: 0x%08X", hr);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void D3D11HostDisplay::destroySurface()
|
|
|
|
{
|
|
|
|
m_swap_chain_rtv.Reset();
|
|
|
|
m_swap_chain.Reset();
|
|
|
|
QtHostDisplay::destroySurface();
|
|
|
|
}
|
|
|
|
|
|
|
|
void D3D11HostDisplay::WindowResized(s32 new_window_width, s32 new_window_height)
|
|
|
|
{
|
|
|
|
QtHostDisplay::WindowResized(new_window_width, new_window_height);
|
|
|
|
|
|
|
|
if (!m_swap_chain)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_swap_chain_rtv.Reset();
|
|
|
|
|
|
|
|
HRESULT hr = m_swap_chain->ResizeBuffers(0, new_window_width, new_window_height, DXGI_FORMAT_UNKNOWN,
|
|
|
|
m_using_allow_tearing ? DXGI_SWAP_CHAIN_FLAG_ALLOW_TEARING : 0);
|
|
|
|
if (FAILED(hr))
|
|
|
|
Log_ErrorPrintf("ResizeBuffers() failed: 0x%08X", hr);
|
|
|
|
|
|
|
|
if (!createSwapChainRTV())
|
|
|
|
Panic("Failed to recreate swap chain RTV after resize");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool D3D11HostDisplay::createDeviceResources()
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
m_display_vertex_shader =
|
2020-02-20 14:22:28 +00:00
|
|
|
D3D11::ShaderCompiler::CreateVertexShader(m_device.Get(), s_display_vs_bytecode, sizeof(s_display_vs_bytecode));
|
2020-01-07 04:27:48 +00:00
|
|
|
m_display_pixel_shader =
|
2020-02-20 14:22:28 +00:00
|
|
|
D3D11::ShaderCompiler::CreatePixelShader(m_device.Get(), s_display_ps_bytecode, sizeof(s_display_ps_bytecode));
|
2020-01-07 04:27:48 +00:00
|
|
|
if (!m_display_vertex_shader || !m_display_pixel_shader)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!m_display_uniform_buffer.Create(m_device.Get(), D3D11_BIND_CONSTANT_BUFFER, DISPLAY_UNIFORM_BUFFER_SIZE))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
CD3D11_RASTERIZER_DESC rasterizer_desc = CD3D11_RASTERIZER_DESC(CD3D11_DEFAULT());
|
|
|
|
rasterizer_desc.CullMode = D3D11_CULL_NONE;
|
|
|
|
hr = m_device->CreateRasterizerState(&rasterizer_desc, m_display_rasterizer_state.GetAddressOf());
|
|
|
|
if (FAILED(hr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
CD3D11_DEPTH_STENCIL_DESC depth_stencil_desc = CD3D11_DEPTH_STENCIL_DESC(CD3D11_DEFAULT());
|
|
|
|
depth_stencil_desc.DepthEnable = FALSE;
|
|
|
|
depth_stencil_desc.DepthWriteMask = D3D11_DEPTH_WRITE_MASK_ZERO;
|
|
|
|
hr = m_device->CreateDepthStencilState(&depth_stencil_desc, m_display_depth_stencil_state.GetAddressOf());
|
|
|
|
if (FAILED(hr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
CD3D11_BLEND_DESC blend_desc = CD3D11_BLEND_DESC(CD3D11_DEFAULT());
|
|
|
|
hr = m_device->CreateBlendState(&blend_desc, m_display_blend_state.GetAddressOf());
|
|
|
|
if (FAILED(hr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
CD3D11_SAMPLER_DESC sampler_desc = CD3D11_SAMPLER_DESC(CD3D11_DEFAULT());
|
|
|
|
sampler_desc.Filter = D3D11_FILTER_MIN_MAG_MIP_POINT;
|
|
|
|
hr = m_device->CreateSamplerState(&sampler_desc, m_point_sampler.GetAddressOf());
|
|
|
|
if (FAILED(hr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
sampler_desc.Filter = D3D11_FILTER_MIN_MAG_LINEAR_MIP_POINT;
|
|
|
|
hr = m_device->CreateSamplerState(&sampler_desc, m_linear_sampler.GetAddressOf());
|
|
|
|
if (FAILED(hr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void D3D11HostDisplay::destroyDeviceResources()
|
2020-01-07 05:54:37 +00:00
|
|
|
{
|
2020-04-22 11:13:51 +00:00
|
|
|
QtHostDisplay::destroyDeviceResources();
|
2020-01-07 05:54:37 +00:00
|
|
|
|
2020-01-08 04:00:28 +00:00
|
|
|
m_display_uniform_buffer.Release();
|
|
|
|
m_swap_chain_rtv.Reset();
|
2020-01-07 05:54:37 +00:00
|
|
|
m_linear_sampler.Reset();
|
|
|
|
m_point_sampler.Reset();
|
|
|
|
m_display_pixel_shader.Reset();
|
|
|
|
m_display_vertex_shader.Reset();
|
|
|
|
m_display_blend_state.Reset();
|
|
|
|
m_display_depth_stencil_state.Reset();
|
|
|
|
m_display_rasterizer_state.Reset();
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
bool D3D11HostDisplay::createImGuiContext()
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
2020-04-22 11:13:51 +00:00
|
|
|
if (!QtHostDisplay::createImGuiContext())
|
2020-01-07 05:54:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!ImGui_ImplDX11_Init(m_device.Get(), m_context.Get()))
|
2020-01-07 04:27:48 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
ImGui_ImplDX11_NewFrame();
|
2020-01-07 05:54:37 +00:00
|
|
|
ImGui::NewFrame();
|
2020-01-07 04:27:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void D3D11HostDisplay::destroyImGuiContext()
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
2020-01-07 05:54:37 +00:00
|
|
|
ImGui_ImplDX11_Shutdown();
|
2020-04-22 11:13:51 +00:00
|
|
|
QtHostDisplay::destroyImGuiContext();
|
2020-01-07 04:27:48 +00:00
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void D3D11HostDisplay::Render()
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
|
|
|
static constexpr std::array<float, 4> clear_color = {};
|
|
|
|
m_context->ClearRenderTargetView(m_swap_chain_rtv.Get(), clear_color.data());
|
|
|
|
m_context->OMSetRenderTargets(1, m_swap_chain_rtv.GetAddressOf(), nullptr);
|
|
|
|
|
2020-01-07 05:54:37 +00:00
|
|
|
renderDisplay();
|
2020-01-07 04:27:48 +00:00
|
|
|
|
2020-01-07 05:54:37 +00:00
|
|
|
ImGui::Render();
|
2020-01-07 04:27:48 +00:00
|
|
|
ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData());
|
|
|
|
|
2020-04-08 14:14:19 +00:00
|
|
|
if (!m_vsync && m_using_allow_tearing)
|
2020-01-18 08:12:09 +00:00
|
|
|
m_swap_chain->Present(0, DXGI_PRESENT_ALLOW_TEARING);
|
|
|
|
else
|
|
|
|
m_swap_chain->Present(BoolToUInt32(m_vsync), 0);
|
2020-01-07 04:27:48 +00:00
|
|
|
|
2020-01-07 05:54:37 +00:00
|
|
|
ImGui::NewFrame();
|
2020-01-07 04:27:48 +00:00
|
|
|
ImGui_ImplDX11_NewFrame();
|
|
|
|
}
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
void D3D11HostDisplay::renderDisplay()
|
2020-01-07 04:27:48 +00:00
|
|
|
{
|
2020-01-24 04:51:36 +00:00
|
|
|
if (!m_display_texture_handle)
|
2020-01-07 04:27:48 +00:00
|
|
|
return;
|
|
|
|
|
2020-04-22 11:13:51 +00:00
|
|
|
auto [vp_left, vp_top, vp_width, vp_height] =
|
|
|
|
CalculateDrawRect(m_window_width, m_window_height, m_display_top_margin);
|
2020-01-07 04:27:48 +00:00
|
|
|
|
|
|
|
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
|
|
|
|
m_context->VSSetShader(m_display_vertex_shader.Get(), nullptr, 0);
|
|
|
|
m_context->PSSetShader(m_display_pixel_shader.Get(), nullptr, 0);
|
2020-01-24 04:51:36 +00:00
|
|
|
m_context->PSSetShaderResources(0, 1, reinterpret_cast<ID3D11ShaderResourceView**>(&m_display_texture_handle));
|
2020-01-07 04:27:48 +00:00
|
|
|
m_context->PSSetSamplers(
|
|
|
|
0, 1, m_display_linear_filtering ? m_linear_sampler.GetAddressOf() : m_point_sampler.GetAddressOf());
|
|
|
|
|
2020-02-28 07:01:01 +00:00
|
|
|
const float uniforms[4] = {
|
2020-02-28 14:18:24 +00:00
|
|
|
(static_cast<float>(m_display_texture_view_x) + 0.25f) / static_cast<float>(m_display_texture_width),
|
|
|
|
(static_cast<float>(m_display_texture_view_y) + 0.25f) / static_cast<float>(m_display_texture_height),
|
2020-02-28 12:42:56 +00:00
|
|
|
(static_cast<float>(m_display_texture_view_width) - 0.5f) / static_cast<float>(m_display_texture_width),
|
|
|
|
(static_cast<float>(m_display_texture_view_height) - 0.5f) / static_cast<float>(m_display_texture_height)};
|
2020-01-07 04:27:48 +00:00
|
|
|
const auto map = m_display_uniform_buffer.Map(m_context.Get(), sizeof(uniforms), sizeof(uniforms));
|
|
|
|
std::memcpy(map.pointer, uniforms, sizeof(uniforms));
|
|
|
|
m_display_uniform_buffer.Unmap(m_context.Get(), sizeof(uniforms));
|
|
|
|
m_context->VSSetConstantBuffers(0, 1, m_display_uniform_buffer.GetD3DBufferArray());
|
|
|
|
|
|
|
|
const CD3D11_VIEWPORT vp(static_cast<float>(vp_left), static_cast<float>(vp_top), static_cast<float>(vp_width),
|
|
|
|
static_cast<float>(vp_height));
|
|
|
|
m_context->RSSetViewports(1, &vp);
|
|
|
|
m_context->RSSetState(m_display_rasterizer_state.Get());
|
|
|
|
m_context->OMSetDepthStencilState(m_display_depth_stencil_state.Get(), 0);
|
|
|
|
m_context->OMSetBlendState(m_display_blend_state.Get(), nullptr, 0xFFFFFFFFu);
|
|
|
|
|
|
|
|
m_context->Draw(3, 0);
|
|
|
|
}
|