diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2022-12-27 22:40:28 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-01-03 22:29:16 +0100 |
commit | b62ffb612dbd672371d163e3b511e81f0c2282e6 (patch) | |
tree | 4bf1cf1172e12db339f63ac750b3a5dbde561ef8 /src/video_core/engines/maxwell_3d.h | |
parent | vulkan_common: blacklist radv from extended_dynamic_state2 on drivers before 22.3.1 (diff) | |
download | yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.tar yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.tar.gz yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.tar.bz2 yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.tar.lz yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.tar.xz yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.tar.zst yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index dbefcd715..a2dff0350 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -2711,7 +2711,7 @@ public: u32 post_z_pixel_imask; ///< 0x0F1C INSERT_PADDING_BYTES_NOINIT(0x20); ConstantColorRendering const_color_rendering; ///< 0x0F40 - s32 stencil_back_ref; ///< 0x0F54 + u32 stencil_back_ref; ///< 0x0F54 u32 stencil_back_mask; ///< 0x0F58 u32 stencil_back_func_mask; ///< 0x0F5C INSERT_PADDING_BYTES_NOINIT(0x14); @@ -2835,9 +2835,9 @@ public: Blend blend; ///< 0x133C u32 stencil_enable; ///< 0x1380 StencilOp stencil_front_op; ///< 0x1384 - s32 stencil_front_ref; ///< 0x1394 - s32 stencil_front_func_mask; ///< 0x1398 - s32 stencil_front_mask; ///< 0x139C + u32 stencil_front_ref; ///< 0x1394 + u32 stencil_front_func_mask; ///< 0x1398 + u32 stencil_front_mask; ///< 0x139C INSERT_PADDING_BYTES_NOINIT(0x4); u32 draw_auto_start_byte_count; ///< 0x13A4 PsSaturate frag_color_clamp; ///< 0x13A8 |