| 227 | |
| 228 | template< typename T > |
| 229 | static void CopyRowReverse( T * dst, const T * src, u32 pixels ) |
| 230 | { |
| 231 | u32 last_pixel {pixels * 2 - 1}; |
| 232 | |
| 233 | for( u32 i {}; i < pixels; ++i ) |
| 234 | { |
| 235 | dst[ last_pixel - i ] = src[ i ]; |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | template<> |
| 240 | void CopyRowReverse( NativePfCI44 * dst, const NativePfCI44 * src, u32 pixels ) |
nothing calls this directly
no outgoing calls
no test coverage detected