2019-10-13 02:02:07 -04:00
|
|
|
|
using OpenTK.Graphics.OpenGL;
|
2020-01-09 19:35:50 -05:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2019-10-13 02:02:07 -04:00
|
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
|
using Ryujinx.Graphics.Shader;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
|
|
|
{
|
2019-12-31 17:09:49 -05:00
|
|
|
|
public sealed class Renderer : IRenderer
|
2019-10-13 02:02:07 -04:00
|
|
|
|
{
|
2020-03-28 23:02:58 -04:00
|
|
|
|
private readonly Pipeline _pipeline;
|
2019-12-31 17:09:49 -05:00
|
|
|
|
|
|
|
|
|
public IPipeline Pipeline => _pipeline;
|
2019-10-13 02:02:07 -04:00
|
|
|
|
|
2019-12-29 12:41:50 -05:00
|
|
|
|
private readonly Counters _counters;
|
2019-10-13 02:02:07 -04:00
|
|
|
|
|
2019-12-29 12:41:50 -05:00
|
|
|
|
private readonly Window _window;
|
2019-10-13 02:02:07 -04:00
|
|
|
|
|
|
|
|
|
public IWindow Window => _window;
|
|
|
|
|
|
|
|
|
|
internal TextureCopy TextureCopy { get; }
|
|
|
|
|
|
2020-03-24 17:54:09 -04:00
|
|
|
|
public string GpuVendor { get; private set; }
|
|
|
|
|
public string GpuRenderer { get; private set; }
|
|
|
|
|
public string GpuVersion { get; private set; }
|
|
|
|
|
|
2019-10-13 02:02:07 -04:00
|
|
|
|
public Renderer()
|
|
|
|
|
{
|
2019-12-31 17:09:49 -05:00
|
|
|
|
_pipeline = new Pipeline();
|
2019-10-13 02:02:07 -04:00
|
|
|
|
_counters = new Counters();
|
2020-03-28 23:02:58 -04:00
|
|
|
|
_window = new Window(this);
|
|
|
|
|
TextureCopy = new TextureCopy(this);
|
2019-10-13 02:02:07 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IShader CompileShader(ShaderProgram shader)
|
|
|
|
|
{
|
|
|
|
|
return new Shader(shader);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IBuffer CreateBuffer(int size)
|
|
|
|
|
{
|
|
|
|
|
return new Buffer(size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IProgram CreateProgram(IShader[] shaders)
|
|
|
|
|
{
|
|
|
|
|
return new Program(shaders);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ISampler CreateSampler(SamplerCreateInfo info)
|
|
|
|
|
{
|
|
|
|
|
return new Sampler(info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ITexture CreateTexture(TextureCreateInfo info)
|
|
|
|
|
{
|
2020-04-25 09:02:18 -04:00
|
|
|
|
return info.Target == Target.TextureBuffer ? new TextureBuffer(info) : new TextureStorage(this, info).CreateDefaultView();
|
2019-10-13 02:02:07 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Capabilities GetCapabilities()
|
|
|
|
|
{
|
2019-11-30 21:53:09 -05:00
|
|
|
|
return new Capabilities(
|
|
|
|
|
HwCapabilities.SupportsAstcCompression,
|
2019-12-11 01:54:18 -05:00
|
|
|
|
HwCapabilities.SupportsNonConstantTextureOffset,
|
2019-12-08 21:55:22 -05:00
|
|
|
|
HwCapabilities.MaximumComputeSharedMemorySize,
|
2020-03-30 17:38:52 -04:00
|
|
|
|
HwCapabilities.StorageBufferOffsetAlignment,
|
|
|
|
|
HwCapabilities.MaxSupportedAnisotropy);
|
2019-10-13 02:02:07 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ulong GetCounter(CounterType type)
|
|
|
|
|
{
|
|
|
|
|
return _counters.GetCounter(type);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-09 19:41:49 -05:00
|
|
|
|
public void Initialize()
|
2019-10-13 02:02:07 -04:00
|
|
|
|
{
|
2020-01-09 19:40:55 -05:00
|
|
|
|
PrintGpuInformation();
|
2020-01-09 19:35:50 -05:00
|
|
|
|
|
2019-10-13 02:02:07 -04:00
|
|
|
|
_counters.Initialize();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-09 19:40:55 -05:00
|
|
|
|
private void PrintGpuInformation()
|
2020-01-09 19:35:50 -05:00
|
|
|
|
{
|
2020-03-24 17:54:09 -04:00
|
|
|
|
GpuVendor = GL.GetString(StringName.Vendor);
|
|
|
|
|
GpuRenderer = GL.GetString(StringName.Renderer);
|
|
|
|
|
GpuVersion = GL.GetString(StringName.Version);
|
2020-01-09 19:35:50 -05:00
|
|
|
|
|
2020-03-24 17:54:09 -04:00
|
|
|
|
Logger.PrintInfo(LogClass.Gpu, $"{GpuVendor} {GpuRenderer} ({GpuVersion})");
|
2020-01-09 19:35:50 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-13 02:02:07 -04:00
|
|
|
|
public void ResetCounter(CounterType type)
|
|
|
|
|
{
|
|
|
|
|
_counters.ResetCounter(type);
|
|
|
|
|
}
|
2019-12-31 17:09:49 -05:00
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
TextureCopy.Dispose();
|
|
|
|
|
_pipeline.Dispose();
|
|
|
|
|
_window.Dispose();
|
|
|
|
|
}
|
2019-10-13 02:02:07 -04:00
|
|
|
|
}
|
|
|
|
|
}
|