2019-10-13 08:02:07 +02:00
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
|
|
{
|
|
|
|
static class HwCapabilities
|
|
|
|
{
|
2020-11-02 21:03:06 +01:00
|
|
|
private static readonly Lazy<bool> _supportsAstcCompression = new Lazy<bool>(() => HasExtension("GL_KHR_texture_compression_astc_ldr"));
|
2021-11-10 19:37:49 +01:00
|
|
|
private static readonly Lazy<bool> _supportsDrawTexture = new Lazy<bool>(() => HasExtension("GL_NV_draw_texture"));
|
2021-10-29 00:53:12 +02:00
|
|
|
private static readonly Lazy<bool> _supportsFragmentShaderInterlock = new Lazy<bool>(() => HasExtension("GL_ARB_fragment_shader_interlock"));
|
|
|
|
private static readonly Lazy<bool> _supportsFragmentShaderOrdering = new Lazy<bool>(() => HasExtension("GL_INTEL_fragment_shader_ordering"));
|
2020-11-02 21:03:06 +01:00
|
|
|
private static readonly Lazy<bool> _supportsImageLoadFormatted = new Lazy<bool>(() => HasExtension("GL_EXT_shader_image_load_formatted"));
|
2021-10-29 00:53:12 +02:00
|
|
|
private static readonly Lazy<bool> _supportsIndirectParameters = new Lazy<bool>(() => HasExtension("GL_ARB_indirect_parameters"));
|
2021-03-29 22:52:25 +02:00
|
|
|
private static readonly Lazy<bool> _supportsParallelShaderCompile = new Lazy<bool>(() => HasExtension("GL_ARB_parallel_shader_compile"));
|
2021-06-25 00:54:50 +02:00
|
|
|
private static readonly Lazy<bool> _supportsPolygonOffsetClamp = new Lazy<bool>(() => HasExtension("GL_EXT_polygon_offset_clamp"));
|
2021-06-02 13:27:30 +02:00
|
|
|
private static readonly Lazy<bool> _supportsQuads = new Lazy<bool>(SupportsQuadsCheck);
|
2021-06-25 00:54:50 +02:00
|
|
|
private static readonly Lazy<bool> _supportsSeamlessCubemapPerTexture = new Lazy<bool>(() => HasExtension("GL_ARB_seamless_cubemap_per_texture"));
|
2021-09-19 14:38:39 +02:00
|
|
|
private static readonly Lazy<bool> _supportsShaderBallot = new Lazy<bool>(() => HasExtension("GL_ARB_shader_ballot"));
|
2021-06-25 00:54:50 +02:00
|
|
|
private static readonly Lazy<bool> _supportsTextureShadowLod = new Lazy<bool>(() => HasExtension("GL_EXT_texture_shadow_lod"));
|
|
|
|
private static readonly Lazy<bool> _supportsViewportSwizzle = new Lazy<bool>(() => HasExtension("GL_NV_viewport_swizzle"));
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2020-03-29 14:48:39 +02:00
|
|
|
private static readonly Lazy<int> _maximumComputeSharedMemorySize = new Lazy<int>(() => GetLimit(All.MaxComputeSharedMemorySize));
|
|
|
|
private static readonly Lazy<int> _storageBufferOffsetAlignment = new Lazy<int>(() => GetLimit(All.ShaderStorageBufferOffsetAlignment));
|
2019-12-01 03:53:09 +01:00
|
|
|
|
2020-03-29 14:48:39 +02:00
|
|
|
public enum GpuVendor
|
|
|
|
{
|
|
|
|
Unknown,
|
2021-07-18 16:45:50 +02:00
|
|
|
AmdWindows,
|
|
|
|
AmdUnix,
|
2021-04-18 02:27:19 +02:00
|
|
|
IntelWindows,
|
|
|
|
IntelUnix,
|
2020-03-29 14:48:39 +02:00
|
|
|
Nvidia
|
|
|
|
}
|
|
|
|
|
|
|
|
private static readonly Lazy<GpuVendor> _gpuVendor = new Lazy<GpuVendor>(GetGpuVendor);
|
|
|
|
|
2021-07-18 16:45:50 +02:00
|
|
|
private static bool _isAMD => _gpuVendor.Value == GpuVendor.AmdWindows || _gpuVendor.Value == GpuVendor.AmdUnix;
|
|
|
|
private static bool _isIntel => _gpuVendor.Value == GpuVendor.IntelWindows || _gpuVendor.Value == GpuVendor.IntelUnix;
|
|
|
|
|
2020-03-29 14:48:39 +02:00
|
|
|
public static GpuVendor Vendor => _gpuVendor.Value;
|
2019-12-01 03:53:09 +01:00
|
|
|
|
2020-03-30 23:38:52 +02:00
|
|
|
private static Lazy<float> _maxSupportedAnisotropy = new Lazy<float>(GL.GetFloat((GetPName)All.MaxTextureMaxAnisotropy));
|
|
|
|
|
2021-07-18 16:45:50 +02:00
|
|
|
public static bool UsePersistentBufferForFlush => _gpuVendor.Value == GpuVendor.AmdWindows || _gpuVendor.Value == GpuVendor.Nvidia;
|
|
|
|
|
2020-11-02 21:03:06 +01:00
|
|
|
public static bool SupportsAstcCompression => _supportsAstcCompression.Value;
|
2021-11-10 19:37:49 +01:00
|
|
|
public static bool SupportsDrawTexture => _supportsDrawTexture.Value;
|
2021-10-29 00:53:12 +02:00
|
|
|
public static bool SupportsFragmentShaderInterlock => _supportsFragmentShaderInterlock.Value;
|
|
|
|
public static bool SupportsFragmentShaderOrdering => _supportsFragmentShaderOrdering.Value;
|
2020-11-02 21:03:06 +01:00
|
|
|
public static bool SupportsImageLoadFormatted => _supportsImageLoadFormatted.Value;
|
2021-10-29 00:53:12 +02:00
|
|
|
public static bool SupportsIndirectParameters => _supportsIndirectParameters.Value;
|
2021-03-29 22:52:25 +02:00
|
|
|
public static bool SupportsParallelShaderCompile => _supportsParallelShaderCompile.Value;
|
2021-06-25 00:54:50 +02:00
|
|
|
public static bool SupportsPolygonOffsetClamp => _supportsPolygonOffsetClamp.Value;
|
2021-06-02 13:27:30 +02:00
|
|
|
public static bool SupportsQuads => _supportsQuads.Value;
|
2021-06-25 00:54:50 +02:00
|
|
|
public static bool SupportsSeamlessCubemapPerTexture => _supportsSeamlessCubemapPerTexture.Value;
|
2021-09-19 14:38:39 +02:00
|
|
|
public static bool SupportsShaderBallot => _supportsShaderBallot.Value;
|
2021-06-25 00:54:50 +02:00
|
|
|
public static bool SupportsTextureShadowLod => _supportsTextureShadowLod.Value;
|
|
|
|
public static bool SupportsViewportSwizzle => _supportsViewportSwizzle.Value;
|
|
|
|
|
2021-07-18 16:45:50 +02:00
|
|
|
public static bool SupportsMismatchingViewFormat => _gpuVendor.Value != GpuVendor.AmdWindows && _gpuVendor.Value != GpuVendor.IntelWindows;
|
2021-06-25 00:54:50 +02:00
|
|
|
public static bool SupportsNonConstantTextureOffset => _gpuVendor.Value == GpuVendor.Nvidia;
|
2021-07-18 16:45:50 +02:00
|
|
|
public static bool RequiresSyncFlush => _gpuVendor.Value == GpuVendor.AmdWindows || _isIntel;
|
2019-12-11 07:54:18 +01:00
|
|
|
|
2020-01-06 02:04:37 +01:00
|
|
|
public static int MaximumComputeSharedMemorySize => _maximumComputeSharedMemorySize.Value;
|
|
|
|
public static int StorageBufferOffsetAlignment => _storageBufferOffsetAlignment.Value;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2020-05-28 01:03:07 +02:00
|
|
|
public static float MaximumSupportedAnisotropy => _maxSupportedAnisotropy.Value;
|
2020-03-30 23:38:52 +02:00
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
private static bool HasExtension(string name)
|
|
|
|
{
|
|
|
|
int numExtensions = GL.GetInteger(GetPName.NumExtensions);
|
|
|
|
|
|
|
|
for (int extension = 0; extension < numExtensions; extension++)
|
|
|
|
{
|
|
|
|
if (GL.GetString(StringNameIndexed.Extensions, extension) == name)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2019-12-01 03:53:09 +01:00
|
|
|
|
|
|
|
private static int GetLimit(All name)
|
|
|
|
{
|
|
|
|
return GL.GetInteger((GetPName)name);
|
|
|
|
}
|
2019-12-11 07:54:18 +01:00
|
|
|
|
2020-03-29 14:48:39 +02:00
|
|
|
private static GpuVendor GetGpuVendor()
|
2019-12-11 07:54:18 +01:00
|
|
|
{
|
2020-03-29 14:48:39 +02:00
|
|
|
string vendor = GL.GetString(StringName.Vendor).ToLower();
|
|
|
|
|
|
|
|
if (vendor == "nvidia corporation")
|
|
|
|
{
|
|
|
|
return GpuVendor.Nvidia;
|
|
|
|
}
|
|
|
|
else if (vendor == "intel")
|
|
|
|
{
|
2021-04-18 02:27:19 +02:00
|
|
|
string renderer = GL.GetString(StringName.Renderer).ToLower();
|
2021-06-25 00:54:50 +02:00
|
|
|
|
2021-04-18 02:27:19 +02:00
|
|
|
return renderer.Contains("mesa") ? GpuVendor.IntelUnix : GpuVendor.IntelWindows;
|
2020-03-29 14:48:39 +02:00
|
|
|
}
|
|
|
|
else if (vendor == "ati technologies inc." || vendor == "advanced micro devices, inc.")
|
|
|
|
{
|
2021-07-18 16:45:50 +02:00
|
|
|
return GpuVendor.AmdWindows;
|
|
|
|
}
|
|
|
|
else if (vendor == "amd" || vendor == "x.org")
|
|
|
|
{
|
|
|
|
return GpuVendor.AmdUnix;
|
2020-03-29 14:48:39 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return GpuVendor.Unknown;
|
|
|
|
}
|
2019-12-11 07:54:18 +01:00
|
|
|
}
|
2021-06-02 13:27:30 +02:00
|
|
|
|
|
|
|
private static bool SupportsQuadsCheck()
|
|
|
|
{
|
|
|
|
GL.GetError(); // Clear any existing error.
|
|
|
|
GL.Begin(PrimitiveType.Quads);
|
|
|
|
GL.End();
|
|
|
|
|
|
|
|
return GL.GetError() == ErrorCode.NoError;
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|