summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-10-14 02:12:31 +0200
committerGitHub <noreply@github.com>2022-10-14 02:12:31 +0200
commit553be194f6b1c9d134561b73301b35e220ea89ac (patch)
tree40936d2c70684c248e31a7a5ebe19822bb4cb9e1 /src/video_core/engines/maxwell_3d.h
parentMerge pull request #9039 from Kelebek1/auto_backend (diff)
parentrenderer_(opengl/vulkan): Fix tessellation clockwise parameter (diff)
downloadyuzu-553be194f6b1c9d134561b73301b35e220ea89ac.tar
yuzu-553be194f6b1c9d134561b73301b35e220ea89ac.tar.gz
yuzu-553be194f6b1c9d134561b73301b35e220ea89ac.tar.bz2
yuzu-553be194f6b1c9d134561b73301b35e220ea89ac.tar.lz
yuzu-553be194f6b1c9d134561b73301b35e220ea89ac.tar.xz
yuzu-553be194f6b1c9d134561b73301b35e220ea89ac.tar.zst
yuzu-553be194f6b1c9d134561b73301b35e220ea89ac.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 12dbd9cc4..75e3b868d 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -390,7 +390,7 @@ public:
FractionalEven = 2,
};
- enum class OutputPrimitves : u32 {
+ enum class OutputPrimitives : u32 {
Points = 0,
Lines = 1,
Triangles_CW = 2,
@@ -401,7 +401,7 @@ public:
union {
BitField<0, 2, DomainType> domain_type;
BitField<4, 2, Spacing> spacing;
- BitField<8, 2, OutputPrimitves> output_primitives;
+ BitField<8, 2, OutputPrimitives> output_primitives;
};
} params;