summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-30 19:07:31 +0200
committerGitHub <noreply@github.com>2020-04-30 19:07:31 +0200
commitbf3f030a0dca67b744b595f70fbf71c3a22967b7 (patch)
tree8e71eab7a1e019aca4055f6053414fe1b453cf8c /src/video_core/engines
parentMerge pull request #3799 from ReinUsesLisp/iadd-cc (diff)
parentmaxwell_3d: Fix depth clamping register (diff)
downloadyuzu-bf3f030a0dca67b744b595f70fbf71c3a22967b7.tar
yuzu-bf3f030a0dca67b744b595f70fbf71c3a22967b7.tar.gz
yuzu-bf3f030a0dca67b744b595f70fbf71c3a22967b7.tar.bz2
yuzu-bf3f030a0dca67b744b595f70fbf71c3a22967b7.tar.lz
yuzu-bf3f030a0dca67b744b595f70fbf71c3a22967b7.tar.xz
yuzu-bf3f030a0dca67b744b595f70fbf71c3a22967b7.tar.zst
yuzu-bf3f030a0dca67b744b595f70fbf71c3a22967b7.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 3dfba8197..5e522e0d2 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1179,6 +1179,7 @@ public:
BitField<0, 1, u32> depth_range_0_1;
BitField<3, 1, u32> depth_clamp_near;
BitField<4, 1, u32> depth_clamp_far;
+ BitField<11, 1, u32> depth_clamp_disabled;
} view_volume_clip_control;
INSERT_UNION_PADDING_WORDS(0x1F);