forked from MoonsideGames/MoonWorks
15 lines
306 B
C#
15 lines
306 B
C#
|
namespace MoonWorks.Graphics
|
|||
|
{
|
|||
|
public struct TextureSamplerBinding
|
|||
|
{
|
|||
|
public Texture Texture;
|
|||
|
public Sampler Sampler;
|
|||
|
|
|||
|
public TextureSamplerBinding(Texture texture, Sampler sampler)
|
|||
|
{
|
|||
|
Texture = texture;
|
|||
|
Sampler = sampler;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|