2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2021-12-09 18:22:16 -08:00
|
|
|
#include "VideoBackends/Software/VideoBackend.h"
|
|
|
|
|
2017-09-09 15:52:35 -04:00
|
|
|
#include <cstring>
|
2015-10-09 20:50:36 +02:00
|
|
|
#include <memory>
|
2014-03-12 15:33:41 -04:00
|
|
|
#include <string>
|
2017-02-03 12:31:20 -05:00
|
|
|
#include <utility>
|
2014-03-12 15:33:41 -04:00
|
|
|
|
2018-06-30 04:53:24 -04:00
|
|
|
#include "Common/Common.h"
|
2014-09-07 20:06:58 -05:00
|
|
|
#include "Common/CommonTypes.h"
|
2018-10-03 23:02:45 +10:00
|
|
|
#include "Common/GL/GLContext.h"
|
2019-02-15 11:59:50 +10:00
|
|
|
#include "Common/MsgHandler.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
|
|
|
|
#include "VideoBackends/Software/Clipper.h"
|
|
|
|
#include "VideoBackends/Software/DebugUtil.h"
|
|
|
|
#include "VideoBackends/Software/EfbInterface.h"
|
|
|
|
#include "VideoBackends/Software/Rasterizer.h"
|
2015-09-26 10:07:48 +02:00
|
|
|
#include "VideoBackends/Software/SWOGLWindow.h"
|
2014-02-19 12:14:09 +01:00
|
|
|
#include "VideoBackends/Software/SWRenderer.h"
|
2017-04-22 23:44:34 -05:00
|
|
|
#include "VideoBackends/Software/SWTexture.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "VideoBackends/Software/SWVertexLoader.h"
|
2017-05-29 17:02:09 -05:00
|
|
|
#include "VideoBackends/Software/TextureCache.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
|
2019-02-15 11:59:50 +10:00
|
|
|
#include "VideoCommon/FramebufferManager.h"
|
2015-10-09 20:50:36 +02:00
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
2016-07-21 19:04:57 -04:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2015-10-09 20:50:36 +02:00
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
namespace SW
|
2009-10-12 00:48:24 +00:00
|
|
|
{
|
2015-10-09 20:50:36 +02:00
|
|
|
class PerfQuery : public PerfQueryBase
|
2009-10-12 00:48:24 +00:00
|
|
|
{
|
2015-10-09 20:50:36 +02:00
|
|
|
public:
|
|
|
|
PerfQuery() {}
|
|
|
|
~PerfQuery() {}
|
|
|
|
void EnableQuery(PerfQueryGroup type) override {}
|
|
|
|
void DisableQuery(PerfQueryGroup type) override {}
|
2018-05-18 15:13:03 -04:00
|
|
|
void ResetQuery() override { EfbInterface::ResetPerfQuery(); }
|
|
|
|
u32 GetQueryResult(PerfQueryType type) override { return EfbInterface::GetPerfQueryResult(type); }
|
2015-10-09 20:50:36 +02:00
|
|
|
void FlushResults() override {}
|
2017-07-30 15:56:12 -04:00
|
|
|
bool IsFlushed() const override { return true; }
|
2015-10-09 20:50:36 +02:00
|
|
|
};
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2015-10-09 20:50:36 +02:00
|
|
|
std::string VideoSoftware::GetName() const
|
2013-02-26 16:42:32 +01:00
|
|
|
{
|
2020-09-06 12:56:45 +02:00
|
|
|
return NAME;
|
2013-02-26 16:42:32 +01:00
|
|
|
}
|
|
|
|
|
2015-10-09 20:50:36 +02:00
|
|
|
std::string VideoSoftware::GetDisplayName() const
|
2012-12-17 14:54:20 -06:00
|
|
|
{
|
2018-06-30 04:53:24 -04:00
|
|
|
return _trans("Software Renderer");
|
2009-10-12 00:48:24 +00:00
|
|
|
}
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2019-07-21 00:57:50 +02:00
|
|
|
std::optional<std::string> VideoSoftware::GetWarningMessage() const
|
|
|
|
{
|
|
|
|
return _trans("The software renderer is significantly slower than other "
|
|
|
|
"backends and is only recommended for debugging purposes.\n\nDo you "
|
|
|
|
"really want to enable software rendering? If unsure, select 'No'.");
|
|
|
|
}
|
|
|
|
|
2016-01-13 21:38:11 +01:00
|
|
|
void VideoSoftware::InitBackendInfo()
|
2009-10-12 00:48:24 +00:00
|
|
|
{
|
2016-07-21 19:04:57 -04:00
|
|
|
g_Config.backend_info.api_type = APIType::Nothing;
|
2017-03-10 00:01:23 +10:00
|
|
|
g_Config.backend_info.MaxTextureSize = 16384;
|
2019-02-15 11:59:50 +10:00
|
|
|
g_Config.backend_info.bUsesLowerLeftOrigin = false;
|
2015-10-09 20:50:36 +02:00
|
|
|
g_Config.backend_info.bSupports3DVision = false;
|
|
|
|
g_Config.backend_info.bSupportsDualSourceBlend = true;
|
|
|
|
g_Config.backend_info.bSupportsEarlyZ = true;
|
|
|
|
g_Config.backend_info.bSupportsPrimitiveRestart = false;
|
2016-08-13 22:08:46 +10:00
|
|
|
g_Config.backend_info.bSupportsMultithreading = false;
|
2016-11-27 18:14:55 +10:00
|
|
|
g_Config.backend_info.bSupportsComputeShaders = false;
|
2016-11-27 18:14:57 +10:00
|
|
|
g_Config.backend_info.bSupportsGPUTextureDecoding = false;
|
2017-04-16 19:30:11 +10:00
|
|
|
g_Config.backend_info.bSupportsST3CTextures = false;
|
2017-07-27 22:00:04 +10:00
|
|
|
g_Config.backend_info.bSupportsBPTCTextures = false;
|
2017-05-29 17:02:09 -05:00
|
|
|
g_Config.backend_info.bSupportsCopyToVram = false;
|
2019-02-15 11:59:50 +10:00
|
|
|
g_Config.backend_info.bSupportsLargePoints = false;
|
2020-05-24 16:11:10 +10:00
|
|
|
g_Config.backend_info.bSupportsDepthReadback = false;
|
2019-03-02 15:03:49 +10:00
|
|
|
g_Config.backend_info.bSupportsPartialDepthCopies = false;
|
2017-10-25 22:44:39 -07:00
|
|
|
g_Config.backend_info.bSupportsFramebufferFetch = false;
|
2018-02-25 17:56:09 +10:00
|
|
|
g_Config.backend_info.bSupportsBackgroundCompiling = false;
|
2018-05-26 00:04:18 +10:00
|
|
|
g_Config.backend_info.bSupportsLogicOp = true;
|
2019-04-15 21:55:26 +10:00
|
|
|
g_Config.backend_info.bSupportsShaderBinaries = false;
|
|
|
|
g_Config.backend_info.bSupportsPipelineCacheData = false;
|
2021-06-09 07:42:21 -04:00
|
|
|
g_Config.backend_info.bSupportsBBox = true;
|
2021-11-13 20:10:20 -08:00
|
|
|
g_Config.backend_info.bSupportsCoarseDerivatives = false;
|
2021-11-13 20:10:55 -08:00
|
|
|
g_Config.backend_info.bSupportsTextureQueryLevels = false;
|
2021-08-06 23:26:51 -04:00
|
|
|
g_Config.backend_info.bSupportsLodBiasInSampler = false;
|
2022-01-30 21:44:57 -05:00
|
|
|
g_Config.backend_info.bSupportsSettingObjectNames = false;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2015-10-09 20:50:36 +02:00
|
|
|
// aamodes
|
|
|
|
g_Config.backend_info.AAModes = {1};
|
2009-10-12 00:48:24 +00:00
|
|
|
}
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2018-10-03 23:03:22 +10:00
|
|
|
bool VideoSoftware::Initialize(const WindowSystemInfo& wsi)
|
2009-10-12 00:48:24 +00:00
|
|
|
{
|
2016-01-13 21:14:20 +01:00
|
|
|
InitializeShared();
|
2013-04-13 23:54:02 -04:00
|
|
|
|
2018-10-03 23:03:26 +10:00
|
|
|
std::unique_ptr<SWOGLWindow> window = SWOGLWindow::Create(wsi);
|
|
|
|
if (!window)
|
|
|
|
return false;
|
2013-04-13 23:54:02 -04:00
|
|
|
|
2015-10-09 20:50:36 +02:00
|
|
|
Clipper::Init();
|
|
|
|
Rasterizer::Init();
|
|
|
|
DebugUtil::Init();
|
2013-04-13 23:54:02 -04:00
|
|
|
|
2018-10-03 23:03:26 +10:00
|
|
|
g_renderer = std::make_unique<SWRenderer>(std::move(window));
|
2018-01-26 15:09:07 +10:00
|
|
|
g_vertex_manager = std::make_unique<SWVertexLoader>();
|
2019-02-15 11:59:50 +10:00
|
|
|
g_shader_cache = std::make_unique<VideoCommon::ShaderCache>();
|
|
|
|
g_framebuffer_manager = std::make_unique<FramebufferManager>();
|
2018-01-26 15:09:07 +10:00
|
|
|
g_perf_query = std::make_unique<PerfQuery>();
|
|
|
|
g_texture_cache = std::make_unique<TextureCache>();
|
2019-02-15 11:59:50 +10:00
|
|
|
|
|
|
|
if (!g_vertex_manager->Initialize() || !g_shader_cache->Initialize() ||
|
|
|
|
!g_renderer->Initialize() || !g_framebuffer_manager->Initialize() ||
|
|
|
|
!g_texture_cache->Initialize())
|
|
|
|
{
|
2020-12-02 13:17:27 -05:00
|
|
|
PanicAlertFmt("Failed to initialize renderer classes");
|
2019-02-15 11:59:50 +10:00
|
|
|
Shutdown();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_shader_cache->InitializeShaderCache();
|
|
|
|
return true;
|
2013-02-16 17:50:40 -06:00
|
|
|
}
|
|
|
|
|
2015-10-09 20:50:36 +02:00
|
|
|
void VideoSoftware::Shutdown()
|
2014-11-13 23:26:49 +01:00
|
|
|
{
|
2018-02-25 01:15:35 +10:00
|
|
|
if (g_shader_cache)
|
|
|
|
g_shader_cache->Shutdown();
|
|
|
|
|
2018-01-26 15:09:07 +10:00
|
|
|
if (g_renderer)
|
|
|
|
g_renderer->Shutdown();
|
2016-01-13 21:14:20 +01:00
|
|
|
|
|
|
|
DebugUtil::Shutdown();
|
|
|
|
g_texture_cache.reset();
|
|
|
|
g_perf_query.reset();
|
2019-02-15 11:59:50 +10:00
|
|
|
g_framebuffer_manager.reset();
|
|
|
|
g_shader_cache.reset();
|
2016-01-13 21:14:20 +01:00
|
|
|
g_vertex_manager.reset();
|
|
|
|
g_renderer.reset();
|
2018-01-26 15:09:07 +10:00
|
|
|
ShutdownShared();
|
2014-02-02 14:16:43 +01:00
|
|
|
}
|
2018-10-03 23:02:45 +10:00
|
|
|
} // namespace SW
|