diff options
| author | 2018-09-29 11:58:39 -0400 | |
|---|---|---|
| committer | 2018-09-29 11:58:39 -0400 | |
| commit | fe5962e073245bee0e7204cca68c5f686c8e6625 (patch) | |
| tree | 4fb852dd52022f1f24b1b31bbc95f5acd09e3851 /src/video_core/engines | |
| parent | Merge pull request #1406 from ReinUsesLisp/multibind-samplers (diff) | |
| parent | video_core: Implement point_size and add point state sync (diff) | |
| download | yuzu-fe5962e073245bee0e7204cca68c5f686c8e6625.tar.gz yuzu-fe5962e073245bee0e7204cca68c5f686c8e6625.tar.xz yuzu-fe5962e073245bee0e7204cca68c5f686c8e6625.zip | |
Merge pull request #1411 from ReinUsesLisp/point-size
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 cd26c7216..9f5581045 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h | |||
| @@ -642,7 +642,11 @@ public: | |||
| 642 | 642 | ||
| 643 | u32 vb_element_base; | 643 | u32 vb_element_base; |
| 644 | 644 | ||
| 645 | INSERT_PADDING_WORDS(0x40); | 645 | INSERT_PADDING_WORDS(0x38); |
| 646 | |||
| 647 | float point_size; | ||
| 648 | |||
| 649 | INSERT_PADDING_WORDS(0x7); | ||
| 646 | 650 | ||
| 647 | u32 zeta_enable; | 651 | u32 zeta_enable; |
| 648 | 652 | ||
| @@ -1018,6 +1022,7 @@ ASSERT_REG_POSITION(stencil_front_func_mask, 0x4E6); | |||
| 1018 | ASSERT_REG_POSITION(stencil_front_mask, 0x4E7); | 1022 | ASSERT_REG_POSITION(stencil_front_mask, 0x4E7); |
| 1019 | ASSERT_REG_POSITION(screen_y_control, 0x4EB); | 1023 | ASSERT_REG_POSITION(screen_y_control, 0x4EB); |
| 1020 | ASSERT_REG_POSITION(vb_element_base, 0x50D); | 1024 | ASSERT_REG_POSITION(vb_element_base, 0x50D); |
| 1025 | ASSERT_REG_POSITION(point_size, 0x546); | ||
| 1021 | ASSERT_REG_POSITION(zeta_enable, 0x54E); | 1026 | ASSERT_REG_POSITION(zeta_enable, 0x54E); |
| 1022 | ASSERT_REG_POSITION(tsc, 0x557); | 1027 | ASSERT_REG_POSITION(tsc, 0x557); |
| 1023 | ASSERT_REG_POSITION(tic, 0x55D); | 1028 | ASSERT_REG_POSITION(tic, 0x55D); |