mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-29 06:36:24 +02:00
10 lines
260 B
C#
10 lines
260 B
C#
namespace Ryujinx.Graphics.Gpu.Image
|
|
{
|
|
interface ITextureDescriptor
|
|
{
|
|
public uint UnpackFormat();
|
|
public TextureTarget UnpackTextureTarget();
|
|
public bool UnpackSrgb();
|
|
public bool UnpackTextureCoordNormalized();
|
|
}
|
|
}
|