diff options
author | bunnei <bunneidev@gmail.com> | 2020-02-10 04:29:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 04:29:28 +0100 |
commit | 84ea9c2b428801b581a35f1668833f99c4128a91 (patch) | |
tree | a41dc448a9b07405af600d606428e5e62c88e6cc /src/video_core/engines/maxwell_3d.h | |
parent | Merge pull request #3391 from Morph1984/remove-unknown (diff) | |
parent | maxwell_3d: Fix stencil back mask (diff) | |
download | yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.tar yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.tar.gz yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.tar.bz2 yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.tar.lz yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.tar.xz yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.tar.zst yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 8808bbf76..e437bacb7 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -704,8 +704,8 @@ public: INSERT_UNION_PADDING_WORDS(0x15); s32 stencil_back_func_ref; - u32 stencil_back_func_mask; u32 stencil_back_mask; + u32 stencil_back_func_mask; INSERT_UNION_PADDING_WORDS(0xC); @@ -1458,8 +1458,8 @@ ASSERT_REG_POSITION(polygon_offset_fill_enable, 0x372); ASSERT_REG_POSITION(patch_vertices, 0x373); ASSERT_REG_POSITION(scissor_test, 0x380); ASSERT_REG_POSITION(stencil_back_func_ref, 0x3D5); -ASSERT_REG_POSITION(stencil_back_func_mask, 0x3D6); -ASSERT_REG_POSITION(stencil_back_mask, 0x3D7); +ASSERT_REG_POSITION(stencil_back_mask, 0x3D6); +ASSERT_REG_POSITION(stencil_back_func_mask, 0x3D7); ASSERT_REG_POSITION(color_mask_common, 0x3E4); ASSERT_REG_POSITION(rt_separate_frag_data, 0x3EB); ASSERT_REG_POSITION(depth_bounds, 0x3E7); |