mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
17 lines
327 B
C#
17 lines
327 B
C#
|
namespace Ryujinx.Graphics.GAL.Texture
|
||
|
{
|
||
|
public enum Target
|
||
|
{
|
||
|
Texture1D,
|
||
|
Texture2D,
|
||
|
Texture3D,
|
||
|
Texture1DArray,
|
||
|
Texture2DArray,
|
||
|
Texture2DMultisample,
|
||
|
Texture2DMultisampleArray,
|
||
|
Rectangle,
|
||
|
Cubemap,
|
||
|
CubemapArray,
|
||
|
TextureBuffer
|
||
|
}
|
||
|
}
|