2018-08-10 00:09:40 -04:00
|
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
|
{
|
|
|
|
|
public interface IGalPipeline
|
|
|
|
|
{
|
2019-03-03 20:45:25 -05:00
|
|
|
|
void Bind(GalPipelineState state);
|
|
|
|
|
void Unbind(GalPipelineState state);
|
2018-10-17 17:02:23 -04:00
|
|
|
|
|
|
|
|
|
void ResetDepthMask();
|
2019-03-03 20:45:25 -05:00
|
|
|
|
void ResetColorMask(int index);
|
2018-08-10 00:09:40 -04:00
|
|
|
|
}
|
|
|
|
|
}
|