diff options
| author | 2022-12-27 16:40:28 -0500 | |
|---|---|---|
| committer | 2023-01-03 16:29:16 -0500 | |
| commit | b62ffb612dbd672371d163e3b511e81f0c2282e6 (patch) | |
| tree | 4bf1cf1172e12db339f63ac750b3a5dbde561ef8 /src/video_core/engines | |
| parent | vulkan_common: blacklist radv from extended_dynamic_state2 on drivers before ... (diff) | |
| download | yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.tar.gz yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.tar.xz yuzu-b62ffb612dbd672371d163e3b511e81f0c2282e6.zip | |
Vulkan: rework stencil tracking.
Diffstat (limited to 'src/video_core/engines')
| -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: | |||
| 2711 | u32 post_z_pixel_imask; ///< 0x0F1C | 2711 | u32 post_z_pixel_imask; ///< 0x0F1C |
| 2712 | INSERT_PADDING_BYTES_NOINIT(0x20); | 2712 | INSERT_PADDING_BYTES_NOINIT(0x20); |
| 2713 | ConstantColorRendering const_color_rendering; ///< 0x0F40 | 2713 | ConstantColorRendering const_color_rendering; ///< 0x0F40 |
| 2714 | s32 stencil_back_ref; ///< 0x0F54 | 2714 | u32 stencil_back_ref; ///< 0x0F54 |
| 2715 | u32 stencil_back_mask; ///< 0x0F58 | 2715 | u32 stencil_back_mask; ///< 0x0F58 |
| 2716 | u32 stencil_back_func_mask; ///< 0x0F5C | 2716 | u32 stencil_back_func_mask; ///< 0x0F5C |
| 2717 | INSERT_PADDING_BYTES_NOINIT(0x14); | 2717 | INSERT_PADDING_BYTES_NOINIT(0x14); |
| @@ -2835,9 +2835,9 @@ public: | |||
| 2835 | Blend blend; ///< 0x133C | 2835 | Blend blend; ///< 0x133C |
| 2836 | u32 stencil_enable; ///< 0x1380 | 2836 | u32 stencil_enable; ///< 0x1380 |
| 2837 | StencilOp stencil_front_op; ///< 0x1384 | 2837 | StencilOp stencil_front_op; ///< 0x1384 |
| 2838 | s32 stencil_front_ref; ///< 0x1394 | 2838 | u32 stencil_front_ref; ///< 0x1394 |
| 2839 | s32 stencil_front_func_mask; ///< 0x1398 | 2839 | u32 stencil_front_func_mask; ///< 0x1398 |
| 2840 | s32 stencil_front_mask; ///< 0x139C | 2840 | u32 stencil_front_mask; ///< 0x139C |
| 2841 | INSERT_PADDING_BYTES_NOINIT(0x4); | 2841 | INSERT_PADDING_BYTES_NOINIT(0x4); |
| 2842 | u32 draw_auto_start_byte_count; ///< 0x13A4 | 2842 | u32 draw_auto_start_byte_count; ///< 0x13A4 |
| 2843 | PsSaturate frag_color_clamp; ///< 0x13A8 | 2843 | PsSaturate frag_color_clamp; ///< 0x13A8 |