diff options
| author | bunnei <bunneidev@gmail.com> | 2020-04-30 13:07:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-30 13:07:31 -0400 |
| commit | bf3f030a0dca67b744b595f70fbf71c3a22967b7 (patch) | |
| tree | 8e71eab7a1e019aca4055f6053414fe1b453cf8c /src/video_core/engines | |
| parent | c7b5a87c9038f37e5fec07336de575498a84b534 (diff) | |
| parent | bb1ed66d9992883f9657bf2757bd40e70a707e8d (diff) | |
Merge pull request #3807 from ReinUsesLisp/fix-depth-clamp
maxwell_3d: Fix depth clamping register
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 1 |
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); |
