Campari/src/TextureSamplerBinding.cs

15 lines
295 B
C#
Raw Normal View History

2021-01-16 04:14:45 +00:00
namespace Campari
{
public struct TextureSamplerBinding
{
public Texture Texture;
public Sampler Sampler;
public TextureSamplerBinding(Texture texture, Sampler sampler)
{
Texture = texture;
Sampler = sampler;
}
}
}