forked from Mirror/Ryujinx
Support flat interpolation qualifier on shaders (#915)
This commit is contained in:
parent
7b0576db71
commit
a1a5341baf
1 changed files with 2 additions and 1 deletions
|
@ -100,7 +100,8 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
||||||
|
|
||||||
switch (op.Mode)
|
switch (op.Mode)
|
||||||
{
|
{
|
||||||
case InterpolationMode.Pass: iq = InterpolationQualifier.NoPerspective; break;
|
case InterpolationMode.Constant: iq = InterpolationQualifier.Flat; break;
|
||||||
|
case InterpolationMode.Pass: iq = InterpolationQualifier.NoPerspective; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
Operand srcA = Attribute(op.AttributeOffset, iq);
|
Operand srcA = Attribute(op.AttributeOffset, iq);
|
||||||
|
|
Loading…
Reference in a new issue