15 lines
No EOL
369 B
C#
15 lines
No EOL
369 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan.Effects
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
|
internal struct SmaaConstants
|
|
{
|
|
public int QualityLow;
|
|
public int QualityMedium;
|
|
public int QualityHigh;
|
|
public int QualityUltra;
|
|
public float Width;
|
|
public float Height;
|
|
}
|
|
} |