1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-16 04:40:05 -06:00
ryujinx/Ryujinx.Graphics.GAL/IRenderer.cs

32 lines
705 B
C#
Raw Normal View History

2019-10-13 01:02:07 -05:00
using Ryujinx.Graphics.Shader;
2019-12-31 16:09:49 -06:00
using System;
2019-10-13 01:02:07 -05:00
namespace Ryujinx.Graphics.GAL
{
2019-12-31 16:09:49 -06:00
public interface IRenderer : IDisposable
2019-10-13 01:02:07 -05:00
{
IPipeline Pipeline { get; }
2019-10-13 01:02:07 -05:00
IWindow Window { get; }
IShader CompileShader(ShaderProgram shader);
IBuffer CreateBuffer(int size);
IProgram CreateProgram(IShader[] shaders);
ISampler CreateSampler(SamplerCreateInfo info);
ITexture CreateTexture(TextureCreateInfo info);
Capabilities GetCapabilities();
void UpdateCounters();
2019-10-13 01:02:07 -05:00
ICounterEvent ReportCounter(CounterType type, EventHandler<ulong> resultHandler);
2019-10-13 01:02:07 -05:00
void ResetCounter(CounterType type);
void Initialize();
2019-10-13 01:02:07 -05:00
}
}