1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00
2021-02-24 13:05:15 +01:00

10 lines
159 B
C#

using System;
namespace RGB.NET.Core
{
public interface ISampler<T>
{
void SampleColor(in SamplerInfo<T> info, Span<T> pixelData);
}
}