mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:49:15 +00:00
0973daefa1
* Reworked scissor tests to remove fixme and handle issues with intel gpu's * Error handling for scissor tests * Disable strict opengl by default * Reformatting for JD * Updated scheme for new property in config * Fixed typo * Moved magic value to constant. I liked the magic :( * Fixed ordering for undertale * Fixed undertale bug * Removed strict opengl in favour of required. With this an exception is no longer thrown, just a warning for required extensions * Uses clamp instead of if's * Removed evil tabs and no longer used include
11 lines
243 B
C#
11 lines
243 B
C#
namespace Ryujinx.Graphics.Gal
|
|
{
|
|
public interface IGalPipeline
|
|
{
|
|
void Bind(GalPipelineState State);
|
|
void Unbind(GalPipelineState State);
|
|
|
|
void ResetDepthMask();
|
|
void ResetColorMask(int Index);
|
|
}
|
|
} |