mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-08-14 04:51:06 +00:00
11 lines
263 B
C#
11 lines
263 B
C#
namespace Ryujinx.Graphics.Gpu.Image
|
|
{
|
|
interface ITextureDescriptor
|
|
{
|
|
public uint UnpackFormat();
|
|
public TextureTarget UnpackTextureTarget();
|
|
public bool UnpackSrgb();
|
|
public bool UnpackTextureCoordNormalized();
|
|
}
|
|
}
|