IGalPipeline.cs 198 B

12345678910
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public interface IGalPipeline
  4. {
  5. void Bind(GalPipelineState State);
  6. void ResetDepthMask();
  7. void ResetColorMask(int Index);
  8. }
  9. }