VisualizationFoundation Enumeration CATTextureFilter

enum CATTextureFilter {
  CATNearest,
  CATLinear,
  CATNearestMipMapNearest,
  CATNearestMipMapLinear,
  CATLinearMipMapNearest,
  CATLinearMipMapLinear
}
Texture filtering modes.
Values:
CATNearest
Nearest texel is used.
CATLinear
Average of nearest texels is used.
CATNearestMipMapNearest
Nearest texel of nearest mip-map is used.
CATNearestMipMapLinear
Average of nearest texel in the two nearest mipmaps is used.
CATLinearMipMapNearest
Average of nearest texels in nearest mipmap.
CATLinearMipMapLinear
Average of nearest texels in the two nearest mipmaps is used.
See also:

This object is included in the file: CATGraphicMaterial.h

Copyright © 1999-2015, Dassault Systèmes. All rights reserved.