mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:38:39 +00:00
17 lines
333 B
C#
17 lines
333 B
C#
using Ryujinx.Graphics.GAL.Texture;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Image
|
|
{
|
|
struct TextureBindingInfo
|
|
{
|
|
public Target Target { get; }
|
|
|
|
public int Handle { get; }
|
|
|
|
public TextureBindingInfo(Target target, int handle)
|
|
{
|
|
Target = target;
|
|
Handle = handle;
|
|
}
|
|
}
|
|
} |