MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / swz_texel_skip

Function swz_texel_skip

Source/astcenc_image.cpp:94–100  ·  view source on GitHub ↗

* @brief Dummy no-op swizzle function. * * @param data The source RGBA vector to swizzle. * @param swz The swizzle to use. */

Source from the content-addressed store, hash-verified

92 * @param swz The swizzle to use.
93 */
94static vfloat4 swz_texel_skip(
95 vfloat4 data,
96 const astcenc_swizzle& swz
97) {
98 (void)swz;
99 return data;
100}
101
102/**
103 * @brief Swizzle a texel into a new arrangement.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected