diff options
| author | mageven <62494521+mageven@users.noreply.github.com> | 2020-07-21 06:29:13 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-20 21:59:13 -0300 |
| commit | 723ae240dcb6ff8b03d1187cdbd81f20424bac52 (patch) | |
| tree | 1e83917b466d6435b65cd46826ac692ff45204f0 /Ryujinx.Graphics.GAL/IPipeline.cs | |
| parent | 1c84b683c2cc9ffab3ebedca92396ca12c82da9d (diff) | |
GL: Implement more Point parameters (#1399)
* Fix GL_INVALID_VALUE on glPointSize calls
* Implement more of Point primitive state
* Use existing Origin enum
Diffstat (limited to 'Ryujinx.Graphics.GAL/IPipeline.cs')
| -rw-r--r-- | Ryujinx.Graphics.GAL/IPipeline.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.GAL/IPipeline.cs b/Ryujinx.Graphics.GAL/IPipeline.cs index 7c67a172..83ccfc3d 100644 --- a/Ryujinx.Graphics.GAL/IPipeline.cs +++ b/Ryujinx.Graphics.GAL/IPipeline.cs @@ -50,7 +50,7 @@ namespace Ryujinx.Graphics.GAL void SetOrigin(Origin origin); - void SetPointSize(float size); + void SetPointParameters(float size, bool isProgramPointSize, bool enablePointSprite, Origin origin); void SetPrimitiveRestart(bool enable, int index); |
