blob: 56ba7624452f60478dd9a3a1ede7e9c2798c1281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
using OpenTK.Graphics.OpenGL;
using Ryujinx.Graphics.GAL;
using Ryujinx.Graphics.GAL.Sampler;
using Ryujinx.Graphics.GAL.Texture;
using Ryujinx.Graphics.Shader;
namespace Ryujinx.Graphics.OpenGL
{
public class Renderer : IRenderer
{
public IComputePipeline ComputePipeline { get; }
public IGraphicsPipeline GraphicsPipeline { get; }
private Counters _counters;
private Window _window;
public IWindow Window => _window;
internal TextureCopy TextureCopy { get; }
public Renderer()
{
ComputePipeline = new ComputePipeline(this);
GraphicsPipeline = new GraphicsPipeline();
_counters = new Counters();
_window = new Window();
TextureCopy = new TextureCopy();
}
public IShader CompileShader(ShaderProgram shader)
{
return new Shader(shader);
}
public IBuffer CreateBuffer(int size)
{
return new Buffer(size);
}
public IProgram CreateProgram(IShader[] shaders)
{
return new Program(shaders);
}
public ISampler CreateSampler(SamplerCreateInfo info)
{
return new Sampler(info);
}
public ITexture CreateTexture(TextureCreateInfo info)
{
return new TextureStorage(this, info).CreateDefaultView();
}
public void FlushPipelines()
{
GL.Finish();
}
public Capabilities GetCapabilities()
{
return new Capabilities(HwCapabilities.SupportsAstcCompression);
}
public ulong GetCounter(CounterType type)
{
return _counters.GetCounter(type);
}
public void InitializeCounters()
{
_counters.Initialize();
}
public void ResetCounter(CounterType type)
{
_counters.ResetCounter(type);
}
}
}
|