diff options
| author | 2017-04-08 18:33:17 +0200 | |
|---|---|---|
| committer | 2017-04-08 18:33:17 +0200 | |
| commit | 1b397c77faa115bf6e7b96197a19e86fa4d373bd (patch) | |
| tree | aee3d0967b65b8e7f8572f109e3835fcf800ee85 /src | |
| parent | Merge pull request #2533 from Lectem/apt_ipchelper (diff) | |
| download | yuzu-1b397c77faa115bf6e7b96197a19e86fa4d373bd.tar.gz yuzu-1b397c77faa115bf6e7b96197a19e86fa4d373bd.tar.xz yuzu-1b397c77faa115bf6e7b96197a19e86fa4d373bd.zip | |
Pica/Regs: Correct bit width for blend-equations
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/regs_framebuffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/regs_framebuffer.h b/src/video_core/regs_framebuffer.h index 366782080..9ddc79243 100644 --- a/src/video_core/regs_framebuffer.h +++ b/src/video_core/regs_framebuffer.h | |||
| @@ -89,8 +89,8 @@ struct FramebufferRegs { | |||
| 89 | }; | 89 | }; |
| 90 | 90 | ||
| 91 | union { | 91 | union { |
| 92 | BitField<0, 8, BlendEquation> blend_equation_rgb; | 92 | BitField<0, 3, BlendEquation> blend_equation_rgb; |
| 93 | BitField<8, 8, BlendEquation> blend_equation_a; | 93 | BitField<8, 3, BlendEquation> blend_equation_a; |
| 94 | 94 | ||
| 95 | BitField<16, 4, BlendFactor> factor_source_rgb; | 95 | BitField<16, 4, BlendFactor> factor_source_rgb; |
| 96 | BitField<20, 4, BlendFactor> factor_dest_rgb; | 96 | BitField<20, 4, BlendFactor> factor_dest_rgb; |