summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-29 11:58:39 -0400
committerGravatar GitHub2018-09-29 11:58:39 -0400
commitfe5962e073245bee0e7204cca68c5f686c8e6625 (patch)
tree4fb852dd52022f1f24b1b31bbc95f5acd09e3851 /src/video_core/engines
parentMerge pull request #1406 from ReinUsesLisp/multibind-samplers (diff)
parentvideo_core: Implement point_size and add point state sync (diff)
downloadyuzu-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.h7
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);
1018ASSERT_REG_POSITION(stencil_front_mask, 0x4E7); 1022ASSERT_REG_POSITION(stencil_front_mask, 0x4E7);
1019ASSERT_REG_POSITION(screen_y_control, 0x4EB); 1023ASSERT_REG_POSITION(screen_y_control, 0x4EB);
1020ASSERT_REG_POSITION(vb_element_base, 0x50D); 1024ASSERT_REG_POSITION(vb_element_base, 0x50D);
1025ASSERT_REG_POSITION(point_size, 0x546);
1021ASSERT_REG_POSITION(zeta_enable, 0x54E); 1026ASSERT_REG_POSITION(zeta_enable, 0x54E);
1022ASSERT_REG_POSITION(tsc, 0x557); 1027ASSERT_REG_POSITION(tsc, 0x557);
1023ASSERT_REG_POSITION(tic, 0x55D); 1028ASSERT_REG_POSITION(tic, 0x55D);