Initialize blend registers with default values (#497)

This commit is contained in:
gdkchan 2018-11-14 19:50:31 -02:00 committed by Ac_K
parent 437962a65d
commit 453543fb88
2 changed files with 12 additions and 2 deletions

View file

@ -24,10 +24,10 @@
{
Enabled = false,
SeparateAlpha = false,
EquationRgb = 0,
EquationRgb = GalBlendEquation.FuncAdd,
FuncSrcRgb = GalBlendFactor.One,
FuncDstRgb = GalBlendFactor.Zero,
EquationAlpha = 0,
EquationAlpha = GalBlendEquation.FuncAdd,
FuncSrcAlpha = GalBlendFactor.One,
FuncDstAlpha = GalBlendFactor.Zero
};