Merge pull request #11699 from Pokechu22/gl-check-maximum-samples

OpenGL: Check the list of supported AA modes instead of hardcoding
This commit is contained in:
Admiral H. Curtiss
2023-06-09 15:07:07 +02:00
committed by GitHub
32 changed files with 237 additions and 158 deletions

View File

@ -62,7 +62,7 @@ std::optional<std::string> VideoSoftware::GetWarningMessage() const
"really want to enable software rendering? If unsure, select 'No'.");
}
void VideoSoftware::InitBackendInfo()
void VideoSoftware::InitBackendInfo(const WindowSystemInfo& wsi)
{
g_Config.backend_info.api_type = APIType::Nothing;
g_Config.backend_info.MaxTextureSize = 16384;

View File

@ -17,7 +17,7 @@ class VideoSoftware : public VideoBackendBase
std::string GetDisplayName() const override;
std::optional<std::string> GetWarningMessage() const override;
void InitBackendInfo() override;
void InitBackendInfo(const WindowSystemInfo& wsi) override;
static constexpr const char* NAME = "Software Renderer";
};