2018-08-10 04:09:40 +00:00
|
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
|
{
|
|
|
|
|
public interface IGalPipeline
|
|
|
|
|
{
|
|
|
|
|
void Bind(GalPipelineState State);
|
2019-03-02 10:50:21 +00:00
|
|
|
|
void Unbind(GalPipelineState State);
|
2018-10-17 21:02:23 +00:00
|
|
|
|
|
|
|
|
|
void ResetDepthMask();
|
|
|
|
|
void ResetColorMask(int Index);
|
2018-08-10 04:09:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|