2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2021-12-10 02:22:16 +00:00
|
|
|
#include "VideoBackends/D3D/VideoBackend.h"
|
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
#include <memory>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2018-06-30 08:53:24 +00:00
|
|
|
#include "Common/Common.h"
|
2016-01-02 20:01:12 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2017-03-04 06:40:08 +00:00
|
|
|
#include "Common/MsgHandler.h"
|
2014-03-12 19:33:41 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/D3D/D3DBase.h"
|
2020-09-15 12:50:34 +00:00
|
|
|
#include "VideoBackends/D3D/D3DBoundingBox.h"
|
2023-01-29 10:58:32 +00:00
|
|
|
#include "VideoBackends/D3D/D3DGfx.h"
|
2023-01-31 04:29:16 +00:00
|
|
|
#include "VideoBackends/D3D/D3DPerfQuery.h"
|
2020-09-15 12:50:34 +00:00
|
|
|
#include "VideoBackends/D3D/D3DSwapChain.h"
|
|
|
|
#include "VideoBackends/D3D/D3DVertexManager.h"
|
2020-09-15 13:07:22 +00:00
|
|
|
#include "VideoBackends/D3DCommon/D3DCommon.h"
|
2011-01-25 16:43:08 +00:00
|
|
|
|
2023-01-29 10:58:32 +00:00
|
|
|
#include "VideoCommon/AbstractGfx.h"
|
2019-02-15 01:59:50 +00:00
|
|
|
#include "VideoCommon/FramebufferManager.h"
|
2018-02-24 15:15:35 +00:00
|
|
|
#include "VideoCommon/ShaderCache.h"
|
2019-02-15 01:59:50 +00:00
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
2016-07-21 23:04:57 +00:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
namespace DX11
|
2011-01-14 15:09:30 +00:00
|
|
|
{
|
2014-03-12 23:39:55 +00:00
|
|
|
std::string VideoBackend::GetName() const
|
2013-05-01 13:51:43 +00:00
|
|
|
{
|
2020-09-06 10:56:45 +00:00
|
|
|
return NAME;
|
2013-05-01 13:51:43 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 23:39:55 +00:00
|
|
|
std::string VideoBackend::GetDisplayName() const
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
2018-06-30 08:53:24 +00:00
|
|
|
return _trans("Direct3D 11");
|
2010-06-13 19:50:06 +00:00
|
|
|
}
|
|
|
|
|
2019-07-21 15:29:08 +00:00
|
|
|
std::optional<std::string> VideoBackend::GetWarningMessage() const
|
|
|
|
{
|
|
|
|
std::optional<std::string> result;
|
|
|
|
|
|
|
|
// If user is on Win7, show a warning about partial DX11.1 support
|
|
|
|
// This is being called BEFORE FillBackendInfo is called for this backend,
|
|
|
|
// so query for logic op support manually
|
|
|
|
bool supportsLogicOp = false;
|
|
|
|
if (D3DCommon::LoadLibraries())
|
|
|
|
{
|
|
|
|
supportsLogicOp = D3D::SupportsLogicOp(g_Config.iAdapter);
|
|
|
|
D3DCommon::UnloadLibraries();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!supportsLogicOp)
|
|
|
|
{
|
|
|
|
result = _trans("Direct3D 11 renderer requires support for features not supported by your "
|
|
|
|
"system configuration. This is most likely because you are using Windows 7. "
|
|
|
|
"You may still use this backend, but you might encounter graphical artifacts."
|
|
|
|
"\n\nDo you really want to switch to Direct3D 11? If unsure, select 'No'.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-01-13 20:38:11 +00:00
|
|
|
void VideoBackend::InitBackendInfo()
|
2010-11-22 22:17:35 +00:00
|
|
|
{
|
2019-03-09 13:31:36 +00:00
|
|
|
if (!D3DCommon::LoadLibraries())
|
2010-11-23 19:58:02 +00:00
|
|
|
return;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-03-09 13:31:36 +00:00
|
|
|
FillBackendInfo();
|
|
|
|
D3DCommon::UnloadLibraries();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBackend::FillBackendInfo()
|
|
|
|
{
|
2016-07-21 23:04:57 +00:00
|
|
|
g_Config.backend_info.api_type = APIType::D3D;
|
2017-03-10 13:40:52 +00:00
|
|
|
g_Config.backend_info.MaxTextureSize = D3D11_REQ_TEXTURE2D_U_OR_V_DIMENSION;
|
2019-02-15 01:59:50 +00:00
|
|
|
g_Config.backend_info.bUsesLowerLeftOrigin = false;
|
2014-07-19 18:18:03 +00:00
|
|
|
g_Config.backend_info.bSupportsExclusiveFullscreen = true;
|
2011-05-31 20:16:59 +00:00
|
|
|
g_Config.backend_info.bSupportsDualSourceBlend = true;
|
2013-04-08 14:34:47 +00:00
|
|
|
g_Config.backend_info.bSupportsPrimitiveRestart = true;
|
2014-12-16 23:26:03 +00:00
|
|
|
g_Config.backend_info.bSupportsGeometryShaders = true;
|
2016-11-27 08:14:55 +00:00
|
|
|
g_Config.backend_info.bSupportsComputeShaders = false;
|
2014-11-13 23:24:53 +00:00
|
|
|
g_Config.backend_info.bSupports3DVision = true;
|
2019-02-15 01:59:50 +00:00
|
|
|
g_Config.backend_info.bSupportsPostProcessing = true;
|
2015-01-26 23:33:23 +00:00
|
|
|
g_Config.backend_info.bSupportsPaletteConversion = true;
|
2015-06-24 21:16:53 +00:00
|
|
|
g_Config.backend_info.bSupportsClipControl = true;
|
2016-08-05 20:31:34 +00:00
|
|
|
g_Config.backend_info.bSupportsDepthClamp = true;
|
2016-08-21 15:47:24 +00:00
|
|
|
g_Config.backend_info.bSupportsReversedDepthRange = false;
|
2016-08-13 12:08:46 +00:00
|
|
|
g_Config.backend_info.bSupportsMultithreading = false;
|
2019-02-15 01:59:50 +00:00
|
|
|
g_Config.backend_info.bSupportsGPUTextureDecoding = true;
|
2017-05-29 22:02:09 +00:00
|
|
|
g_Config.backend_info.bSupportsCopyToVram = true;
|
2019-02-15 01:59:50 +00:00
|
|
|
g_Config.backend_info.bSupportsLargePoints = false;
|
2020-05-24 06:11:10 +00:00
|
|
|
g_Config.backend_info.bSupportsDepthReadback = true;
|
2019-03-02 05:03:49 +00:00
|
|
|
g_Config.backend_info.bSupportsPartialDepthCopies = false;
|
2017-07-20 05:25:24 +00:00
|
|
|
g_Config.backend_info.bSupportsBitfield = false;
|
|
|
|
g_Config.backend_info.bSupportsDynamicSamplerIndexing = false;
|
2017-10-26 05:44:39 +00:00
|
|
|
g_Config.backend_info.bSupportsFramebufferFetch = false;
|
2018-02-25 07:56:09 +00:00
|
|
|
g_Config.backend_info.bSupportsBackgroundCompiling = true;
|
2019-03-09 13:31:36 +00:00
|
|
|
g_Config.backend_info.bSupportsST3CTextures = true;
|
|
|
|
g_Config.backend_info.bSupportsBPTCTextures = true;
|
|
|
|
g_Config.backend_info.bSupportsEarlyZ = true;
|
|
|
|
g_Config.backend_info.bSupportsBBox = true;
|
|
|
|
g_Config.backend_info.bSupportsFragmentStoresAndAtomics = true;
|
|
|
|
g_Config.backend_info.bSupportsGSInstancing = true;
|
|
|
|
g_Config.backend_info.bSupportsSSAA = true;
|
2019-04-15 11:55:26 +00:00
|
|
|
g_Config.backend_info.bSupportsShaderBinaries = true;
|
|
|
|
g_Config.backend_info.bSupportsPipelineCacheData = false;
|
2021-11-14 04:10:20 +00:00
|
|
|
g_Config.backend_info.bSupportsCoarseDerivatives = true;
|
2021-11-14 04:10:55 +00:00
|
|
|
g_Config.backend_info.bSupportsTextureQueryLevels = true;
|
2021-08-07 03:26:51 +00:00
|
|
|
g_Config.backend_info.bSupportsLodBiasInSampler = true;
|
2019-07-21 15:10:51 +00:00
|
|
|
g_Config.backend_info.bSupportsLogicOp = D3D::SupportsLogicOp(g_Config.iAdapter);
|
2022-01-31 03:18:59 +00:00
|
|
|
g_Config.backend_info.bSupportsSettingObjectNames = true;
|
2022-06-21 07:07:35 +00:00
|
|
|
g_Config.backend_info.bSupportsPartialMultisampleResolve = true;
|
2022-06-18 06:09:35 +00:00
|
|
|
g_Config.backend_info.bSupportsDynamicVertexLoader = false;
|
2019-03-09 13:31:36 +00:00
|
|
|
|
|
|
|
g_Config.backend_info.Adapters = D3DCommon::GetAdapterNames();
|
|
|
|
g_Config.backend_info.AAModes = D3D::GetAAModes(g_Config.iAdapter);
|
2019-04-28 05:26:46 +00:00
|
|
|
|
|
|
|
// Override optional features if we are actually booting.
|
|
|
|
if (D3D::device)
|
|
|
|
{
|
|
|
|
g_Config.backend_info.bSupportsST3CTextures =
|
|
|
|
D3D::SupportsTextureFormat(DXGI_FORMAT_BC1_UNORM) &&
|
|
|
|
D3D::SupportsTextureFormat(DXGI_FORMAT_BC2_UNORM) &&
|
|
|
|
D3D::SupportsTextureFormat(DXGI_FORMAT_BC3_UNORM);
|
|
|
|
g_Config.backend_info.bSupportsBPTCTextures = D3D::SupportsTextureFormat(DXGI_FORMAT_BC7_UNORM);
|
|
|
|
|
|
|
|
// Features only supported with a FL11.0+ device.
|
|
|
|
const bool shader_model_5_supported = D3D::feature_level >= D3D_FEATURE_LEVEL_11_0;
|
|
|
|
g_Config.backend_info.bSupportsEarlyZ = shader_model_5_supported;
|
|
|
|
g_Config.backend_info.bSupportsBBox = shader_model_5_supported;
|
|
|
|
g_Config.backend_info.bSupportsFragmentStoresAndAtomics = shader_model_5_supported;
|
|
|
|
g_Config.backend_info.bSupportsGSInstancing = shader_model_5_supported;
|
|
|
|
g_Config.backend_info.bSupportsSSAA = shader_model_5_supported;
|
|
|
|
g_Config.backend_info.bSupportsGPUTextureDecoding = shader_model_5_supported;
|
|
|
|
}
|
2011-05-31 20:16:59 +00:00
|
|
|
}
|
|
|
|
|
2018-10-03 13:03:22 +00:00
|
|
|
bool VideoBackend::Initialize(const WindowSystemInfo& wsi)
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
2019-03-09 13:31:36 +00:00
|
|
|
if (!D3D::Create(g_Config.iAdapter, g_Config.bEnableValidationLayer))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
FillBackendInfo();
|
2023-01-29 10:58:32 +00:00
|
|
|
UpdateActiveConfig();
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2019-03-09 13:31:36 +00:00
|
|
|
std::unique_ptr<SwapChain> swap_chain;
|
|
|
|
if (wsi.render_surface && !(swap_chain = SwapChain::Create(wsi)))
|
2018-01-26 05:09:07 +00:00
|
|
|
{
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmtT("Failed to create D3D swap chain");
|
2019-03-09 13:31:36 +00:00
|
|
|
ShutdownShared();
|
|
|
|
D3D::Destroy();
|
2018-01-26 05:09:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-03-04 06:40:08 +00:00
|
|
|
|
2023-01-29 10:58:32 +00:00
|
|
|
auto gfx = std::make_unique<DX11::Gfx>(std::move(swap_chain), wsi.render_surface_scale);
|
|
|
|
auto vertex_manager = std::make_unique<VertexManager>();
|
|
|
|
auto perf_query = std::make_unique<PerfQuery>();
|
|
|
|
auto bounding_box = std::make_unique<D3DBoundingBox>();
|
2018-02-24 15:15:35 +00:00
|
|
|
|
2023-01-29 10:58:32 +00:00
|
|
|
return InitializeShared(std::move(gfx), std::move(vertex_manager), std::move(perf_query),
|
2023-01-31 04:29:16 +00:00
|
|
|
std::move(bounding_box));
|
2010-06-13 19:50:06 +00:00
|
|
|
}
|
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
void VideoBackend::Shutdown()
|
2010-06-13 19:50:06 +00:00
|
|
|
{
|
2016-01-13 20:14:20 +00:00
|
|
|
ShutdownShared();
|
2019-03-09 13:31:36 +00:00
|
|
|
D3D::Destroy();
|
2013-02-26 15:42:32 +00:00
|
|
|
}
|
2018-10-03 13:03:13 +00:00
|
|
|
} // namespace DX11
|