Difference between revisions of "ChannelPacking"

From polycount
Jump to: navigation, search
(RMA, draw calls)
Line 2: Line 2:
  
 
These channels are usually used to represent traditional RGB color data, plus Alpha transparency. However each channel is really just a grayscale image, so different types of image data can be stored in them.
 
These channels are usually used to represent traditional RGB color data, plus Alpha transparency. However each channel is really just a grayscale image, so different types of image data can be stored in them.
 +
 +
RMA means Roughness + Metallic + Ambient Occlusion, packed into the red, green, and blue channels of a bitmap. These maps are used with [[PBR]] materials.
  
 
Individual channels can be extracted by a [[Shaders|shader]] to use them for particular effects, for example the red channel for glow, green channel for specular, blue channel for sound types, alpha channel for physics info, etc. Each channel can have a totally different layout, and thus use different [[TextureCoordinates|UVs]].  
 
Individual channels can be extracted by a [[Shaders|shader]] to use them for particular effects, for example the red channel for glow, green channel for specular, blue channel for sound types, alpha channel for physics info, etc. Each channel can have a totally different layout, and thus use different [[TextureCoordinates|UVs]].  
  
Games use this technique to avoid loading separate grayscale images, which saves [[Memory]]. The tradeoff is in increased shader complexity.  
+
Games use this technique to avoid loading separate grayscale images, which saves [[Memory]]. However this does increase shader complexity, which can increase [[GameRenderingTerminology#Draw Call|draw calls]].  
  
  

Revision as of 10:50, 24 May 2015

Channel packing means using different grayscale images in each of a texture's image channels... Red, Green, Blue, and optionally Alpha.

These channels are usually used to represent traditional RGB color data, plus Alpha transparency. However each channel is really just a grayscale image, so different types of image data can be stored in them.

RMA means Roughness + Metallic + Ambient Occlusion, packed into the red, green, and blue channels of a bitmap. These maps are used with PBR materials.

Individual channels can be extracted by a shader to use them for particular effects, for example the red channel for glow, green channel for specular, blue channel for sound types, alpha channel for physics info, etc. Each channel can have a totally different layout, and thus use different UVs.

Games use this technique to avoid loading separate grayscale images, which saves Memory. However this does increase shader complexity, which can increase draw calls.


Examples

Two channel-packed textures, which store a total of six unique textures, see An exercise in modular textures - Scifi lab UDK on the Polycount Forum. Image by Tor 'Snefer' Frick.


A channel-packed texture used to texture an entire scene, see [UDK Oil Rig Observation Outpost] on the Polycount Forum. Image by Wiktor 'Disting' Öhman.


A channel-packed texture used in Mass Effect 3, see Mass Effect 3 art - Marc-Antoine Hamelin on the Polycount Forum. Image by Marc-Antoine 'Marcan' Hamelin.


Compression Artifacts

If you save a channel-packed texture using DXT compression, it will probably add blocky artifacts to your maps. To learn how to reduce these errors, see Normal Map Compression.


Tools


More Information


Personal tools
Namespaces

Variants
Actions
Navigation
Tools