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

10 lines
162 B
C#

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