2019-10-13 06:02:07 +00:00
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
|
|
{
|
|
|
|
static class HwCapabilities
|
|
|
|
{
|
2019-11-10 01:55:30 +00:00
|
|
|
private static Lazy<bool> _astcCompression = new Lazy<bool>(() => HasExtension("GL_KHR_texture_compression_astc_ldr"));
|
2019-10-13 06:02:07 +00:00
|
|
|
|
|
|
|
public static bool SupportsAstcCompression => _astcCompression.Value;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|