* @brief Dummy no-op swizzle function. * * @param data The source RGBA vector to swizzle. * @param swz The swizzle to use. */
| 92 | * @param swz The swizzle to use. |
| 93 | */ |
| 94 | static 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. |
nothing calls this directly
no outgoing calls
no test coverage detected