diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-02-01 20:19:46 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-02 10:19:46 +1100 |
| commit | f373f870f769ef65c435aa307dc3fa1be6dc6fae (patch) | |
| tree | 31b48f768d8afc1a924facd16a030e3f06cc237f /Ryujinx.Graphics.GAL | |
| parent | a1a5341bafa82d4346cb4ee61f43dcd94d53a6de (diff) | |
Support configurable point size (#916)
Diffstat (limited to 'Ryujinx.Graphics.GAL')
| -rw-r--r-- | Ryujinx.Graphics.GAL/IPipeline.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/IPipeline.cs b/Ryujinx.Graphics.GAL/IPipeline.cs index 41e35dd4..1a5f1cf0 100644 --- a/Ryujinx.Graphics.GAL/IPipeline.cs +++ b/Ryujinx.Graphics.GAL/IPipeline.cs @@ -42,6 +42,8 @@ namespace Ryujinx.Graphics.GAL void SetImage(int index, ShaderStage stage, ITexture texture); + void SetPointSize(float size); + void SetPrimitiveRestart(bool enable, int index); void SetPrimitiveTopology(PrimitiveTopology topology); |
