summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-23 16:21:30 +0200
committerGitHub <noreply@github.com>2018-10-23 16:21:30 +0200
commit75d807788ccaf64a478fdc48aecdb841baecc34e (patch)
tree4fc8a09dcc0f1ad915ba7d65154fafd43ae684a2 /src/video_core/engines
parentMerge pull request #1512 from ReinUsesLisp/brk (diff)
parentAssert that multiple render targets are not set while alpha testing (diff)
downloadyuzu-75d807788ccaf64a478fdc48aecdb841baecc34e.tar
yuzu-75d807788ccaf64a478fdc48aecdb841baecc34e.tar.gz
yuzu-75d807788ccaf64a478fdc48aecdb841baecc34e.tar.bz2
yuzu-75d807788ccaf64a478fdc48aecdb841baecc34e.tar.lz
yuzu-75d807788ccaf64a478fdc48aecdb841baecc34e.tar.xz
yuzu-75d807788ccaf64a478fdc48aecdb841baecc34e.tar.zst
yuzu-75d807788ccaf64a478fdc48aecdb841baecc34e.zip
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:
u32 d3d_cull_mode;
ComparisonOp depth_test_func;
+ float alpha_test_ref;
+ ComparisonOp alpha_test_func;
- INSERT_PADDING_WORDS(0xB);
+ INSERT_PADDING_WORDS(0x9);
struct {
u32 separate_alpha;