Ryujinx/Ryujinx.Graphics.GAL/IRenderer.cs

30 lines
627 B
C#
Raw Normal View History

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