diff options
| author | 2018-11-14 17:31:47 -0300 | |
|---|---|---|
| committer | 2018-11-17 19:59:34 -0300 | |
| commit | 5297495c871b7907f1ad03b4ef24f60e2c08daca (patch) | |
| tree | 9d1428da747b9428f5a1db7fd752905750d3ad7e | |
| parent | fix for gcc compilation (diff) | |
| download | yuzu-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.h | 4 |
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); |