diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-23 10:21:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 10:21:30 -0400 |
commit | 75d807788ccaf64a478fdc48aecdb841baecc34e (patch) | |
tree | 4fc8a09dcc0f1ad915ba7d65154fafd43ae684a2 /src/video_core/engines | |
parent | 848a49112a774cd95fe1a600f1acdfec7aefcc6d (diff) | |
parent | 8e1239fbc59325f5a9898329af869ae575ec983f (diff) |
Merge pull request #1470 from FernandoS27/alpha_testing
Implemented Alpha Test using Shader Emulation
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 4 |
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; |