summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Rodolfo Bogado2018-11-14 17:31:47 -0300
committerGravatar Rodolfo Bogado2018-11-17 19:59:34 -0300
commit5297495c871b7907f1ad03b4ef24f60e2c08daca (patch)
tree9d1428da747b9428f5a1db7fd752905750d3ad7e
parentfix for gcc compilation (diff)
downloadyuzu-5297495c871b7907f1ad03b4ef24f60e2c08daca.tar.gz
yuzu-5297495c871b7907f1ad03b4ef24f60e2c08daca.tar.xz
yuzu-5297495c871b7907f1ad03b4ef24f60e2c08daca.zip
small fix for alphaToOne bit location
-rw-r--r--src/video_core/engines/maxwell_3d.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 1af948d24..9e480dc39 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -728,8 +728,8 @@ public:
728 u32 zeta_enable; 728 u32 zeta_enable;
729 729
730 union { 730 union {
731 BitField<1, 1, u32> alpha_to_coverage; 731 BitField<0, 1, u32> alpha_to_coverage;
732 BitField<2, 1, u32> alpha_to_one; 732 BitField<4, 1, u32> alpha_to_one;
733 } multisample_control; 733 } multisample_control;
734 734
735 INSERT_PADDING_WORDS(0x7); 735 INSERT_PADDING_WORDS(0x7);