| 528 | #pragma clang diagnostic ignored "-Wunused-function" |
| 529 | #endif |
| 530 | static inline void fixSteps(Size sz, size_t elemSize, size_t& step1, size_t& step2, size_t& step) |
| 531 | { |
| 532 | if( sz.height == 1 ) |
| 533 | step1 = step2 = step = sz.width*elemSize; |
| 534 | } |
| 535 | #if defined(__clang__) |
| 536 | #pragma clang diagnostic pop |
| 537 | #endif |
no outgoing calls
no test coverage detected