diff options
| author | bunnei <bunneidev@gmail.com> | 2018-11-28 17:47:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-28 17:47:28 -0500 |
| commit | 5a9a84994a31ab72d2caab752ee2a3d02afc8133 (patch) | |
| tree | 7e832b967ca67d9b3d349b1818c718f3731bfce1 /src/video_core/engines | |
| parent | 3fe8ab0d996cb3bf1c29b0e003ee6d2d2e81c74a (diff) | |
| parent | 6710eb4892a9a728153b9485138133db5bc33d23 (diff) | |
Merge pull request #1808 from Tinob/master
Fix clip distance and viewport
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 2e896e5f2..d3b3ed1f0 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -744,7 +744,20 @@ public: u32 vb_element_base; - INSERT_PADDING_WORDS(0x38); + INSERT_PADDING_WORDS(0x36); + + union { + BitField<0, 1, u32> c0; + BitField<1, 1, u32> c1; + BitField<2, 1, u32> c2; + BitField<3, 1, u32> c3; + BitField<4, 1, u32> c4; + BitField<5, 1, u32> c5; + BitField<6, 1, u32> c6; + BitField<7, 1, u32> c7; + } clip_distance_enabled; + + INSERT_PADDING_WORDS(0x1); float point_size; @@ -1208,6 +1221,7 @@ ASSERT_REG_POSITION(stencil_front_mask, 0x4E7); ASSERT_REG_POSITION(frag_color_clamp, 0x4EA); ASSERT_REG_POSITION(screen_y_control, 0x4EB); ASSERT_REG_POSITION(vb_element_base, 0x50D); +ASSERT_REG_POSITION(clip_distance_enabled, 0x544); ASSERT_REG_POSITION(point_size, 0x546); ASSERT_REG_POSITION(zeta_enable, 0x54E); ASSERT_REG_POSITION(multisample_control, 0x54F); |
