![]() | |
Supersampling |
public enum SupersamplingResolveFilterType
Member name | Value | Description |
---|---|---|
None | 0 | Performs simple bilinear read from 2x2 pixels is used - no custom filter is used. |
SquareFilterSize5 | 1 | Performs 5 bilinear reads per destination pixel in a rotated grid fashion and a center pixel with increased weight. The area of read texels is 2 x 2 texels around the center texel. To use this filer with 4x4 down-sampling, set the TexelOffsetsScale to 2. |
RotatedFilterSize5 | 2 | Performs 5 bilinear reads per destination pixel in a rotated grid fashion and a center pixel with increased weight. The area of read texels is slightly bigger then 2 x 2 texels around the center texel. The result is smoother but slightly blurrier and in case of 3D lines slightly thicker lines. |
RotatedFilterSize9 | 3 | Performs 9 bilinear reads per destination pixel in a rotated grid fashion and a center pixel with increased weight. The area of read texels is slightly bigger then 4 x 4 texels around the center texel. The result is smoother but slightly blurrier and in case of 3D lines slightly thicker lines. |