- added the missing blend modes to FRenderStyle.

This commit is contained in:
Christoph Oelckers 2020-04-11 19:03:20 +02:00
commit 2ff93b4635
3 changed files with 5 additions and 1 deletions

View file

@ -109,6 +109,8 @@ enum ERenderAlpha
STYLEALPHA_InvSrcCol, // Blend factor is 1.0 - color (HWR only)
STYLEALPHA_DstCol, // Blend factor is dest. color (HWR only)
STYLEALPHA_InvDstCol, // Blend factor is 1.0 - dest. color (HWR only)
STYLEALPHA_Dst, // Blend factor is dest. alpha
STYLEALPHA_InvDst, // Blend factor is 1.0 - dest. alpha
STYLEALPHA_MAX
};