IGalBlend.cs 542 B

12345678910111213141516171819202122
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public interface IGalBlend
  4. {
  5. void Enable();
  6. void Disable();
  7. void Set(
  8. GalBlendEquation Equation,
  9. GalBlendFactor FuncSrc,
  10. GalBlendFactor FuncDst);
  11. void SetSeparate(
  12. GalBlendEquation EquationRgb,
  13. GalBlendEquation EquationAlpha,
  14. GalBlendFactor FuncSrcRgb,
  15. GalBlendFactor FuncDstRgb,
  16. GalBlendFactor FuncSrcAlpha,
  17. GalBlendFactor FuncDstAlpha);
  18. }
  19. }