Fix texture blit off-by-one errors (#2335)
This commit is contained in:
@ -9,6 +9,11 @@ namespace Ryujinx.Graphics.Gpu.State
|
||||
public uint Packed;
|
||||
#pragma warning restore CS0649
|
||||
|
||||
public bool UnpackOriginCorner()
|
||||
{
|
||||
return (Packed & 1u) != 0;
|
||||
}
|
||||
|
||||
public bool UnpackLinearFilter()
|
||||
{
|
||||
return (Packed & (1u << 4)) != 0;
|
||||
|
Reference in New Issue
Block a user