MoonWorks/src/Graphics/Bindings/TextureSamplerBinding.cs

15 lines
249 B
C#
Raw Normal View History

namespace MoonWorks.Graphics
{
2022-02-23 05:14:32 +00:00
public struct TextureSamplerBinding
{
public Texture Texture;
public Sampler Sampler;
2022-02-23 05:14:32 +00:00
public TextureSamplerBinding(Texture texture, Sampler sampler)
{
Texture = texture;
Sampler = sampler;
}
}
}