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