| 12345678910111213141516171819202122 |
- namespace Ryujinx.Graphics.Gal
- {
- public interface IGalBlend
- {
- void Enable();
- void Disable();
- void Set(
- GalBlendEquation Equation,
- GalBlendFactor FuncSrc,
- GalBlendFactor FuncDst);
- void SetSeparate(
- GalBlendEquation EquationRgb,
- GalBlendEquation EquationAlpha,
- GalBlendFactor FuncSrcRgb,
- GalBlendFactor FuncDstRgb,
- GalBlendFactor FuncSrcAlpha,
- GalBlendFactor FuncDstAlpha);
- }
- }
|