From 5297495c871b7907f1ad03b4ef24f60e2c08daca Mon Sep 17 00:00:00 2001 From: Rodolfo Bogado Date: Wed, 14 Nov 2018 17:31:47 -0300 Subject: small fix for alphaToOne bit location --- src/video_core/engines/maxwell_3d.h | 4 ++-- 1 file 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: u32 zeta_enable; union { - BitField<1, 1, u32> alpha_to_coverage; - BitField<2, 1, u32> alpha_to_one; + BitField<0, 1, u32> alpha_to_coverage; + BitField<4, 1, u32> alpha_to_one; } multisample_control; INSERT_PADDING_WORDS(0x7); -- cgit v1.2.3