2019-10-13 06:02:07 +00:00
|
|
|
|
using OpenTK.Graphics.OpenGL;
|
2020-08-02 14:41:24 +00:00
|
|
|
|
using Ryujinx.Common.Configuration;
|
2020-01-10 00:35:50 +00:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2019-10-13 06:02:07 +00:00
|
|
|
|
using Ryujinx.Graphics.GAL;
|
2020-05-23 09:46:09 +00:00
|
|
|
|
using Ryujinx.Graphics.OpenGL.Image;
|
2020-05-04 02:24:59 +00:00
|
|
|
|
using Ryujinx.Graphics.OpenGL.Queries;
|
2019-10-13 06:02:07 +00:00
|
|
|
|
using Ryujinx.Graphics.Shader;
|
2020-05-04 02:24:59 +00:00
|
|
|
|
using System;
|
2019-10-13 06:02:07 +00:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
|
|
|
{
|
2019-12-31 22:09:49 +00:00
|
|
|
|
public sealed class Renderer : IRenderer
|
2019-10-13 06:02:07 +00:00
|
|
|
|
{
|
2020-03-29 03:02:58 +00:00
|
|
|
|
private readonly Pipeline _pipeline;
|
2019-12-31 22:09:49 +00:00
|
|
|
|
|
|
|
|
|
public IPipeline Pipeline => _pipeline;
|
2019-10-13 06:02:07 +00:00
|
|
|
|
|
2019-12-29 17:41:50 +00:00
|
|
|
|
private readonly Counters _counters;
|
2019-10-13 06:02:07 +00:00
|
|
|
|
|
2019-12-29 17:41:50 +00:00
|
|
|
|
private readonly Window _window;
|
2019-10-13 06:02:07 +00:00
|
|
|
|
|
|
|
|
|
public IWindow Window => _window;
|
|
|
|
|
|
|
|
|
|
internal TextureCopy TextureCopy { get; }
|
|
|
|
|
|
2020-03-24 21:54:09 +00:00
|
|
|
|
public string GpuVendor { get; private set; }
|
|
|
|
|
public string GpuRenderer { get; private set; }
|
|
|
|
|
public string GpuVersion { get; private set; }
|
|
|
|
|
|
2019-10-13 06:02:07 +00:00
|
|
|
|
public Renderer()
|
|
|
|
|
{
|
2019-12-31 22:09:49 +00:00
|
|
|
|
_pipeline = new Pipeline();
|
2019-10-13 06:02:07 +00:00
|
|
|
|
_counters = new Counters();
|
2020-03-29 03:02:58 +00:00
|
|
|
|
_window = new Window(this);
|
|
|
|
|
TextureCopy = new TextureCopy(this);
|
2019-10-13 06:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IShader CompileShader(ShaderProgram shader)
|
|
|
|
|
{
|
|
|
|
|
return new Shader(shader);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-23 09:46:09 +00:00
|
|
|
|
public BufferHandle CreateBuffer(int size)
|
2019-10-13 06:02:07 +00:00
|
|
|
|
{
|
2020-05-23 09:46:09 +00:00
|
|
|
|
return Buffer.Create(size);
|
2019-10-13 06:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 03:01:10 +00:00
|
|
|
|
public IProgram CreateProgram(IShader[] shaders, TransformFeedbackDescriptor[] transformFeedbackDescriptors)
|
2019-10-13 06:02:07 +00:00
|
|
|
|
{
|
2020-07-15 03:01:10 +00:00
|
|
|
|
return new Program(shaders, transformFeedbackDescriptors);
|
2019-10-13 06:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ISampler CreateSampler(SamplerCreateInfo info)
|
|
|
|
|
{
|
|
|
|
|
return new Sampler(info);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-07 02:41:07 +00:00
|
|
|
|
public ITexture CreateTexture(TextureCreateInfo info, float scaleFactor)
|
2019-10-13 06:02:07 +00:00
|
|
|
|
{
|
2020-07-07 02:41:07 +00:00
|
|
|
|
return info.Target == Target.TextureBuffer ? new TextureBuffer(info) : new TextureStorage(this, info, scaleFactor).CreateDefaultView();
|
2019-10-13 06:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-23 09:46:09 +00:00
|
|
|
|
public void DeleteBuffer(BufferHandle buffer)
|
|
|
|
|
{
|
|
|
|
|
Buffer.Delete(buffer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public byte[] GetBufferData(BufferHandle buffer, int offset, int size)
|
|
|
|
|
{
|
|
|
|
|
return Buffer.GetData(buffer, offset, size);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-13 06:02:07 +00:00
|
|
|
|
public Capabilities GetCapabilities()
|
|
|
|
|
{
|
2019-12-01 02:53:09 +00:00
|
|
|
|
return new Capabilities(
|
|
|
|
|
HwCapabilities.SupportsAstcCompression,
|
2020-05-27 09:00:21 +00:00
|
|
|
|
HwCapabilities.SupportsImageLoadFormatted,
|
2019-12-11 06:54:18 +00:00
|
|
|
|
HwCapabilities.SupportsNonConstantTextureOffset,
|
2020-05-27 23:03:07 +00:00
|
|
|
|
HwCapabilities.SupportsViewportSwizzle,
|
2019-12-09 02:55:22 +00:00
|
|
|
|
HwCapabilities.MaximumComputeSharedMemorySize,
|
2020-05-27 23:03:07 +00:00
|
|
|
|
HwCapabilities.MaximumSupportedAnisotropy,
|
|
|
|
|
HwCapabilities.StorageBufferOffsetAlignment);
|
2019-10-13 06:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-23 09:46:09 +00:00
|
|
|
|
public void SetBufferData(BufferHandle buffer, int offset, ReadOnlySpan<byte> data)
|
|
|
|
|
{
|
|
|
|
|
Buffer.SetData(buffer, offset, data);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-04 02:24:59 +00:00
|
|
|
|
public void UpdateCounters()
|
2019-10-13 06:02:07 +00:00
|
|
|
|
{
|
2020-05-04 02:24:59 +00:00
|
|
|
|
_counters.Update();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ICounterEvent ReportCounter(CounterType type, EventHandler<ulong> resultHandler)
|
|
|
|
|
{
|
|
|
|
|
return _counters.QueueReport(type, resultHandler);
|
2019-10-13 06:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-02 14:41:24 +00:00
|
|
|
|
public void Initialize(GraphicsDebugLevel glLogLevel)
|
2019-10-13 06:02:07 +00:00
|
|
|
|
{
|
2020-08-02 14:41:24 +00:00
|
|
|
|
Debugger.Initialize(glLogLevel);
|
|
|
|
|
|
2020-01-10 00:40:55 +00:00
|
|
|
|
PrintGpuInformation();
|
2020-01-10 00:35:50 +00:00
|
|
|
|
|
2019-10-13 06:02:07 +00:00
|
|
|
|
_counters.Initialize();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 00:40:55 +00:00
|
|
|
|
private void PrintGpuInformation()
|
2020-01-10 00:35:50 +00:00
|
|
|
|
{
|
2020-03-24 21:54:09 +00:00
|
|
|
|
GpuVendor = GL.GetString(StringName.Vendor);
|
|
|
|
|
GpuRenderer = GL.GetString(StringName.Renderer);
|
|
|
|
|
GpuVersion = GL.GetString(StringName.Version);
|
2020-01-10 00:35:50 +00:00
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Notice.Print(LogClass.Gpu, $"{GpuVendor} {GpuRenderer} ({GpuVersion})");
|
2020-01-10 00:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-13 06:02:07 +00:00
|
|
|
|
public void ResetCounter(CounterType type)
|
|
|
|
|
{
|
2020-05-04 02:24:59 +00:00
|
|
|
|
_counters.QueueReset(type);
|
2019-10-13 06:02:07 +00:00
|
|
|
|
}
|
2019-12-31 22:09:49 +00:00
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
TextureCopy.Dispose();
|
|
|
|
|
_pipeline.Dispose();
|
|
|
|
|
_window.Dispose();
|
2020-05-04 02:24:59 +00:00
|
|
|
|
_counters.Dispose();
|
2019-12-31 22:09:49 +00:00
|
|
|
|
}
|
2019-10-13 06:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|