Fix shader texture LOD query (#2397)
This commit is contained in:
parent
ab9d4b862d
commit
c71ae9c85c
3 changed files with 6 additions and 6 deletions
|
@ -889,7 +889,7 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
|||
type,
|
||||
flags,
|
||||
handle,
|
||||
compIndex,
|
||||
compIndex ^ 1, // The instruction component order is the inverse of GLSL's.
|
||||
tempDest,
|
||||
sources);
|
||||
|
||||
|
@ -897,9 +897,9 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
|||
|
||||
tempDest = context.FPMultiply(tempDest, ConstF(256.0f));
|
||||
|
||||
Operand finalValue = context.FPConvertToS32(tempDest);
|
||||
Operand fixedPointValue = context.FPConvertToS32(tempDest);
|
||||
|
||||
context.Copy(dest, finalValue);
|
||||
context.Copy(dest, fixedPointValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue