1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-15 20:30:04 -06:00
ryujinx/Ryujinx.Graphics.GAL/IRenderer.cs

32 lines
667 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);
void FlushPipelines();
Capabilities GetCapabilities();
ulong GetCounter(CounterType type);
void InitializeCounters();
void ResetCounter(CounterType type);
}
}