summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorGravatar FernandoS272018-10-08 23:34:11 -0400
committerGravatar FernandoS272018-10-22 15:07:30 -0400
commitaa620c14af0a9bc2bf7784ed096298fc3c8899c3 (patch)
tree699de63d8265e2a7a6bc65b136fc9926cedb9e70 /src/video_core/engines
parentMerge pull request #1541 from lioncash/define (diff)
downloadyuzu-aa620c14af0a9bc2bf7784ed096298fc3c8899c3.tar.gz
yuzu-aa620c14af0a9bc2bf7784ed096298fc3c8899c3.tar.xz
yuzu-aa620c14af0a9bc2bf7784ed096298fc3c8899c3.zip
Implemented Alpha Testing
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index c8af1c6b6..0e09a7ee5 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -643,8 +643,10 @@ public:
643 u32 d3d_cull_mode; 643 u32 d3d_cull_mode;
644 644
645 ComparisonOp depth_test_func; 645 ComparisonOp depth_test_func;
646 float alpha_test_ref;
647 ComparisonOp alpha_test_func;
646 648
647 INSERT_PADDING_WORDS(0xB); 649 INSERT_PADDING_WORDS(0x9);
648 650
649 struct { 651 struct {
650 u32 separate_alpha; 652 u32 separate_alpha;