2019-10-13 02:02:07 -04:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 11:32:06 -05:00
|
|
|
/// <summary>
|
|
|
|
/// Texture to texture copy control.
|
|
|
|
/// </summary>
|
2019-10-13 02:02:07 -04:00
|
|
|
struct CopyTextureControl
|
|
|
|
{
|
|
|
|
public uint Packed;
|
|
|
|
|
|
|
|
public bool UnpackLinearFilter()
|
|
|
|
{
|
|
|
|
return (Packed & (1u << 4)) != 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|