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