summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2020-02-09 22:29:28 -0500
committerGravatar GitHub2020-02-09 22:29:28 -0500
commit84ea9c2b428801b581a35f1668833f99c4128a91 (patch)
treea41dc448a9b07405af600d606428e5e62c88e6cc /src
parentMerge pull request #3391 from Morph1984/remove-unknown (diff)
parentmaxwell_3d: Fix stencil back mask (diff)
downloadyuzu-84ea9c2b428801b581a35f1668833f99c4128a91.tar.gz
yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.tar.xz
yuzu-84ea9c2b428801b581a35f1668833f99c4128a91.zip
Merge pull request #3372 from ReinUsesLisp/fix-back-stencil
maxwell_3d: Fix stencil back mask
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_3d.h6
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:
704 INSERT_UNION_PADDING_WORDS(0x15); 704 INSERT_UNION_PADDING_WORDS(0x15);
705 705
706 s32 stencil_back_func_ref; 706 s32 stencil_back_func_ref;
707 u32 stencil_back_func_mask;
708 u32 stencil_back_mask; 707 u32 stencil_back_mask;
708 u32 stencil_back_func_mask;
709 709
710 INSERT_UNION_PADDING_WORDS(0xC); 710 INSERT_UNION_PADDING_WORDS(0xC);
711 711
@@ -1458,8 +1458,8 @@ ASSERT_REG_POSITION(polygon_offset_fill_enable, 0x372);
1458ASSERT_REG_POSITION(patch_vertices, 0x373); 1458ASSERT_REG_POSITION(patch_vertices, 0x373);
1459ASSERT_REG_POSITION(scissor_test, 0x380); 1459ASSERT_REG_POSITION(scissor_test, 0x380);
1460ASSERT_REG_POSITION(stencil_back_func_ref, 0x3D5); 1460ASSERT_REG_POSITION(stencil_back_func_ref, 0x3D5);
1461ASSERT_REG_POSITION(stencil_back_func_mask, 0x3D6); 1461ASSERT_REG_POSITION(stencil_back_mask, 0x3D6);
1462ASSERT_REG_POSITION(stencil_back_mask, 0x3D7); 1462ASSERT_REG_POSITION(stencil_back_func_mask, 0x3D7);
1463ASSERT_REG_POSITION(color_mask_common, 0x3E4); 1463ASSERT_REG_POSITION(color_mask_common, 0x3E4);
1464ASSERT_REG_POSITION(rt_separate_frag_data, 0x3EB); 1464ASSERT_REG_POSITION(rt_separate_frag_data, 0x3EB);
1465ASSERT_REG_POSITION(depth_bounds, 0x3E7); 1465ASSERT_REG_POSITION(depth_bounds, 0x3E7);