summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-02-11 14:26:07 +0100
committerGitHub <noreply@github.com>2020-02-11 14:26:07 +0100
commit37f1cf8cbd496dc518aac4ac28ea86f8c0b51683 (patch)
tree20a57cc14339bace7c3e73cdb508f14026f2cfa3 /src/video_core/engines
parentMerge pull request #3372 from ReinUsesLisp/fix-back-stencil (diff)
parentgl_rasterizer: Implement GL_POINT_SPRITE (diff)
downloadyuzu-37f1cf8cbd496dc518aac4ac28ea86f8c0b51683.tar
yuzu-37f1cf8cbd496dc518aac4ac28ea86f8c0b51683.tar.gz
yuzu-37f1cf8cbd496dc518aac4ac28ea86f8c0b51683.tar.bz2
yuzu-37f1cf8cbd496dc518aac4ac28ea86f8c0b51683.tar.lz
yuzu-37f1cf8cbd496dc518aac4ac28ea86f8c0b51683.tar.xz
yuzu-37f1cf8cbd496dc518aac4ac28ea86f8c0b51683.tar.zst
yuzu-37f1cf8cbd496dc518aac4ac28ea86f8c0b51683.zip
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 e437bacb7..7b1912a66 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -862,7 +862,11 @@ public:
float point_size;
- INSERT_UNION_PADDING_WORDS(0x7);
+ INSERT_UNION_PADDING_WORDS(0x1);
+
+ u32 point_sprite_enable;
+
+ INSERT_UNION_PADDING_WORDS(0x5);
u32 zeta_enable;
@@ -1494,6 +1498,7 @@ ASSERT_REG_POSITION(vb_element_base, 0x50D);
ASSERT_REG_POSITION(vb_base_instance, 0x50E);
ASSERT_REG_POSITION(clip_distance_enabled, 0x544);
ASSERT_REG_POSITION(point_size, 0x546);
+ASSERT_REG_POSITION(point_sprite_enable, 0x548);
ASSERT_REG_POSITION(zeta_enable, 0x54E);
ASSERT_REG_POSITION(multisample_control, 0x54F);
ASSERT_REG_POSITION(condition, 0x554);