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