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