summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2017-04-09 21:40:00 +0200
committerGitHub <noreply@github.com>2017-04-09 21:40:00 +0200
commit9007c489927cdb05278eb3712c7a9a4d8c0c57b1 (patch)
treeaee3d0967b65b8e7f8572f109e3835fcf800ee85 /src/video_core
parentMerge pull request #2533 from Lectem/apt_ipchelper (diff)
parentPica/Regs: Correct bit width for blend-equations (diff)
downloadyuzu-9007c489927cdb05278eb3712c7a9a4d8c0c57b1.tar
yuzu-9007c489927cdb05278eb3712c7a9a4d8c0c57b1.tar.gz
yuzu-9007c489927cdb05278eb3712c7a9a4d8c0c57b1.tar.bz2
yuzu-9007c489927cdb05278eb3712c7a9a4d8c0c57b1.tar.lz
yuzu-9007c489927cdb05278eb3712c7a9a4d8c0c57b1.tar.xz
yuzu-9007c489927cdb05278eb3712c7a9a4d8c0c57b1.tar.zst
yuzu-9007c489927cdb05278eb3712c7a9a4d8c0c57b1.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/regs_framebuffer.h4
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 {
};
union {
- BitField<0, 8, BlendEquation> blend_equation_rgb;
- BitField<8, 8, BlendEquation> blend_equation_a;
+ BitField<0, 3, BlendEquation> blend_equation_rgb;
+ BitField<8, 3, BlendEquation> blend_equation_a;
BitField<16, 4, BlendFactor> factor_source_rgb;
BitField<20, 4, BlendFactor> factor_dest_rgb;