summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-10-13 21:52:56 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-10-13 21:52:56 +0200
commitd3114c620d169b05ee16a72826cfc55e9c10a56a (patch)
treea6b86c0de4e402413435984ffa2f45ee0170b1ae /src/video_core/engines
parentMerge pull request #9066 from Morph1984/fix-stretch-to-window (diff)
downloadyuzu-d3114c620d169b05ee16a72826cfc55e9c10a56a.tar
yuzu-d3114c620d169b05ee16a72826cfc55e9c10a56a.tar.gz
yuzu-d3114c620d169b05ee16a72826cfc55e9c10a56a.tar.bz2
yuzu-d3114c620d169b05ee16a72826cfc55e9c10a56a.tar.lz
yuzu-d3114c620d169b05ee16a72826cfc55e9c10a56a.tar.xz
yuzu-d3114c620d169b05ee16a72826cfc55e9c10a56a.tar.zst
yuzu-d3114c620d169b05ee16a72826cfc55e9c10a56a.zip
Diffstat (limited to 'src/video_core/engines')
-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;