mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 17:07:10 +02:00
Implement GPU scissors (#1058)
* Implement GPU scissors * Remove unused using * Add missing changes for Clear
This commit is contained in:
parent
0c169e7efd
commit
2ef646354c
10 changed files with 107 additions and 7 deletions
|
@ -7,7 +7,7 @@ namespace Ryujinx.Graphics.OpenGL
|
|||
{
|
||||
public sealed class Renderer : IRenderer
|
||||
{
|
||||
private Pipeline _pipeline;
|
||||
private readonly Pipeline _pipeline;
|
||||
|
||||
public IPipeline Pipeline => _pipeline;
|
||||
|
||||
|
@ -31,9 +31,9 @@ namespace Ryujinx.Graphics.OpenGL
|
|||
|
||||
_counters = new Counters();
|
||||
|
||||
_window = new Window();
|
||||
_window = new Window(this);
|
||||
|
||||
TextureCopy = new TextureCopy();
|
||||
TextureCopy = new TextureCopy(this);
|
||||
}
|
||||
|
||||
public IShader CompileShader(ShaderProgram shader)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue