CathodeRetro::SamplerType
enum class SamplerType
{
NearestClamp,
NearestWrap,
LinearClamp,
LinearWrap,
}
The type of texture sampling and addressing to use for a given sampler.
Index
Values
- NearestClamp
- The sampler this is attached to should use nearest-neighbor texture sampling and clamped addressing.
- NearestWrap
- The sampler this is attached to should use nearest-neighbor texture sampling and wrapped addressing.
- LinearClamp
- The sampler this is attached to should use linear texture sampling and clamped addressing.
- LinearWrap
- The sampler this is attached to should use linear texture sampling and wrapped addressing.