diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-10-13 21:52:56 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-10-13 21:52:56 +0200 |
commit | d3114c620d169b05ee16a72826cfc55e9c10a56a (patch) | |
tree | a6b86c0de4e402413435984ffa2f45ee0170b1ae /src/video_core/engines | |
parent | Merge pull request #9066 from Morph1984/fix-stretch-to-window (diff) | |
download | yuzu-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.h | 4 |
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; |