MoonWorks/src/Graphics/Bindings/TextureSamplerBinding.cs

17 lines
264 B
C#
Raw Normal View History

using System;
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;
2022-02-23 05:14:32 +00:00
}
}
}