0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 06:41:40 +00:00
ryujinx-fork/Ryujinx.Graphics/Gal/IGalPipeline.cs
gdkchan 0e1e094b7a
Improve texture tables (#457)
* Improve texture tables

* More renaming and other tweaks

* Minor tweaks
2018-10-17 18:02:23 -03:00

10 lines
No EOL
198 B
C#

namespace Ryujinx.Graphics.Gal
{
public interface IGalPipeline
{
void Bind(GalPipelineState State);
void ResetDepthMask();
void ResetColorMask(int Index);
}
}