Ryujinx/Ryujinx.Graphics.GAL/IRenderer.cs

30 lines
627 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
using Ryujinx.Graphics.Shader;
2019-12-31 23:09:49 +01:00
using System;
2019-10-13 08:02:07 +02:00
namespace Ryujinx.Graphics.GAL
{
2019-12-31 23:09:49 +01:00
public interface IRenderer : IDisposable
2019-10-13 08:02:07 +02:00
{
IPipeline Pipeline { get; }
2019-10-13 08:02:07 +02: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();
ulong GetCounter(CounterType type);
2020-01-10 01:41:49 +01:00
void Initialize();
2019-10-13 08:02:07 +02:00
void ResetCounter(CounterType type);
}
}