TextureProcessorOutputFormat

enum TextureProcessorOutputFormat : System.Enum, System.IComparable, System.IFormattable, System.IConvertible

Specifies the target output (of type SurfaceFormat) of the texture processor. Used by TextureProcessor.TextureFormat.

TextureProcessorOutputFormat Color

The SurfaceFormat value, of the input TextureContent object, is converted to Color by the processor. Typically used for 2D graphics and overlays.

TextureProcessorOutputFormat DxtCompressed

The SurfaceFormat value, of the input TextureContent object, is converted to an appropriate DXT compression by the processor. If the input texture contains fractional alpha values, it is converted to DXT5 format (8 bits per texel); otherwise it is converted to DXT1 (4 bits per texel). This conversion reduces the resource’s size on the graphics card. Typically used for 3D textures such as 3D model textures.

TextureProcessorOutputFormat NoChange

The SurfaceFormat value, of the input TextureContent object, is not changed by the processor. Typically used for textures processed by an external tool.

TextureProcessorOutputFormat Compressed

The SurfaceFormat value, of the input TextureContent object, is converted to an appropriate compressed format for the target platform. This can include PVRTC for iOS, DXT for desktop, Windows 8 and Windows Phone 8, and ETC1 or BGRA4444 for Android.

TextureProcessorOutputFormat Color16Bit

The pixel depth of the input texture is reduced to BGR565 for opaque textures, otherwise it uses BGRA4444.

TextureProcessorOutputFormat Etc1Compressed

The input texture is compressed using ETC1 texture compression. Used on Android platforms.

TextureProcessorOutputFormat PvrCompressed

The input texture is compressed using PVR texture compression. Used on iOS and some Android platforms.

TextureProcessorOutputFormat AtcCompressed

The input texture is compressed using ATI texture compression. Used on some Android platforms.