mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
10 lines
162 B
C#
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);
|
|
}
|
|
}
|