From d512ce122cb1c9a7fe7cb40d3f85d642ee37f897 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 18 Oct 2021 18:38:04 -0300 Subject: Initial tessellation shader support (#2534) * Initial tessellation shader support * Nits * Re-arrange built-in table * This is not needed anymore * PR feedback --- Ryujinx.Graphics.GAL/PolygonMode.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Ryujinx.Graphics.GAL/PolygonMode.cs (limited to 'Ryujinx.Graphics.GAL/PolygonMode.cs') diff --git a/Ryujinx.Graphics.GAL/PolygonMode.cs b/Ryujinx.Graphics.GAL/PolygonMode.cs new file mode 100644 index 00000000..d6110c1b --- /dev/null +++ b/Ryujinx.Graphics.GAL/PolygonMode.cs @@ -0,0 +1,9 @@ +namespace Ryujinx.Graphics.GAL +{ + public enum PolygonMode + { + Point = 0x1b00, + Line = 0x1b01, + Fill = 0x1b02 + } +} -- cgit v1.2.3