diff options
| author | 2018-09-28 01:31:01 -0300 | |
|---|---|---|
| committer | 2018-09-28 02:13:29 -0300 | |
| commit | e3e51d3ddb45597b843ae710d8d9a33caec6931f (patch) | |
| tree | 63a4125d1102bdec94d1772e11f824d98a0f68c8 /src/video_core/engines | |
| parent | Merge pull request #1360 from FearlessTobi/port-3979 (diff) | |
| download | yuzu-e3e51d3ddb45597b843ae710d8d9a33caec6931f.tar.gz yuzu-e3e51d3ddb45597b843ae710d8d9a33caec6931f.tar.xz yuzu-e3e51d3ddb45597b843ae710d8d9a33caec6931f.zip | |
video_core: Implement point_size and add point state sync
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 16cdfc7e2..63dec5a83 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h | |||
| @@ -641,7 +641,11 @@ public: | |||
| 641 | 641 | ||
| 642 | u32 vb_element_base; | 642 | u32 vb_element_base; |
| 643 | 643 | ||
| 644 | INSERT_PADDING_WORDS(0x40); | 644 | INSERT_PADDING_WORDS(0x38); |
| 645 | |||
| 646 | float point_size; | ||
| 647 | |||
| 648 | INSERT_PADDING_WORDS(0x7); | ||
| 645 | 649 | ||
| 646 | u32 zeta_enable; | 650 | u32 zeta_enable; |
| 647 | 651 | ||
| @@ -1017,6 +1021,7 @@ ASSERT_REG_POSITION(stencil_front_func_mask, 0x4E6); | |||
| 1017 | ASSERT_REG_POSITION(stencil_front_mask, 0x4E7); | 1021 | ASSERT_REG_POSITION(stencil_front_mask, 0x4E7); |
| 1018 | ASSERT_REG_POSITION(screen_y_control, 0x4EB); | 1022 | ASSERT_REG_POSITION(screen_y_control, 0x4EB); |
| 1019 | ASSERT_REG_POSITION(vb_element_base, 0x50D); | 1023 | ASSERT_REG_POSITION(vb_element_base, 0x50D); |
| 1024 | ASSERT_REG_POSITION(point_size, 0x546); | ||
| 1020 | ASSERT_REG_POSITION(zeta_enable, 0x54E); | 1025 | ASSERT_REG_POSITION(zeta_enable, 0x54E); |
| 1021 | ASSERT_REG_POSITION(tsc, 0x557); | 1026 | ASSERT_REG_POSITION(tsc, 0x557); |
| 1022 | ASSERT_REG_POSITION(tic, 0x55D); | 1027 | ASSERT_REG_POSITION(tic, 0x55D); |