summaryrefslogtreecommitdiffstats
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-05-11 05:00:40 +0200
committerbunnei <bunneidev@gmail.com>2016-05-11 05:00:40 +0200
commit86ecbdfa4de5654fb1f3e998921af8db1d5373cf (patch)
treea1fa859a3e2a8183eb7b3d367c41aa91a747b39f /src/video_core/pica.h
parentMerge pull request #1774 from lioncash/warn (diff)
parentOpenGL: Implement W-Buffers and fix depth-mapping (diff)
downloadyuzu-86ecbdfa4de5654fb1f3e998921af8db1d5373cf.tar
yuzu-86ecbdfa4de5654fb1f3e998921af8db1d5373cf.tar.gz
yuzu-86ecbdfa4de5654fb1f3e998921af8db1d5373cf.tar.bz2
yuzu-86ecbdfa4de5654fb1f3e998921af8db1d5373cf.tar.lz
yuzu-86ecbdfa4de5654fb1f3e998921af8db1d5373cf.tar.xz
yuzu-86ecbdfa4de5654fb1f3e998921af8db1d5373cf.tar.zst
yuzu-86ecbdfa4de5654fb1f3e998921af8db1d5373cf.zip
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r--src/video_core/pica.h20
1 files changed, 17 insertions, 3 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index 5891fb72a..a81a7b984 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -70,7 +70,7 @@ struct Regs {
INSERT_PADDING_WORDS(0x9);
BitField<0, 24, u32> viewport_depth_range; // float24
- BitField<0, 24, u32> viewport_depth_far_plane; // float24
+ BitField<0, 24, u32> viewport_depth_near_plane; // float24
BitField<0, 3, u32> vs_output_total;
@@ -122,7 +122,20 @@ struct Regs {
BitField<16, 10, s32> y;
} viewport_corner;
- INSERT_PADDING_WORDS(0x17);
+ INSERT_PADDING_WORDS(0x1);
+
+ //TODO: early depth
+ INSERT_PADDING_WORDS(0x1);
+
+ INSERT_PADDING_WORDS(0x2);
+
+ enum DepthBuffering : u32 {
+ WBuffering = 0,
+ ZBuffering = 1,
+ };
+ BitField< 0, 1, DepthBuffering> depthmap_enable;
+
+ INSERT_PADDING_WORDS(0x12);
struct TextureConfig {
enum WrapMode : u32 {
@@ -1279,10 +1292,11 @@ ASSERT_REG_POSITION(cull_mode, 0x40);
ASSERT_REG_POSITION(viewport_size_x, 0x41);
ASSERT_REG_POSITION(viewport_size_y, 0x43);
ASSERT_REG_POSITION(viewport_depth_range, 0x4d);
-ASSERT_REG_POSITION(viewport_depth_far_plane, 0x4e);
+ASSERT_REG_POSITION(viewport_depth_near_plane, 0x4e);
ASSERT_REG_POSITION(vs_output_attributes[0], 0x50);
ASSERT_REG_POSITION(vs_output_attributes[1], 0x51);
ASSERT_REG_POSITION(viewport_corner, 0x68);
+ASSERT_REG_POSITION(depthmap_enable, 0x6D);
ASSERT_REG_POSITION(texture0_enable, 0x80);
ASSERT_REG_POSITION(texture0, 0x81);
ASSERT_REG_POSITION(texture0_format, 0x8e);