2019-10-13 08:02:07 +02:00
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
|
|
{
|
|
|
|
static class HwCapabilities
|
|
|
|
{
|
2020-03-29 14:48:39 +02:00
|
|
|
private static readonly Lazy<bool> _supportsAstcCompression = new Lazy<bool>(() => HasExtension("GL_KHR_texture_compression_astc_ldr"));
|
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,
|
|
|
|
Amd,
|
|
|
|
Intel,
|
|
|
|
Nvidia
|
|
|
|
}
|
|
|
|
|
|
|
|
private static readonly Lazy<GpuVendor> _gpuVendor = new Lazy<GpuVendor>(GetGpuVendor);
|
|
|
|
|
|
|
|
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));
|
|
|
|
|
2019-12-11 07:54:18 +01:00
|
|
|
public static bool SupportsAstcCompression => _supportsAstcCompression.Value;
|
2020-03-29 14:48:39 +02:00
|
|
|
public static bool SupportsNonConstantTextureOffset => _gpuVendor.Value == GpuVendor.Nvidia;
|
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-03-30 23:38:52 +02:00
|
|
|
public static float MaxSupportedAnisotropy => _maxSupportedAnisotropy.Value;
|
|
|
|
|
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")
|
|
|
|
{
|
|
|
|
return GpuVendor.Intel;
|
|
|
|
}
|
|
|
|
else if (vendor == "ati technologies inc." || vendor == "advanced micro devices, inc.")
|
|
|
|
{
|
|
|
|
return GpuVendor.Amd;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return GpuVendor.Unknown;
|
|
|
|
}
|
2019-12-11 07:54:18 +01:00
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|