| 103 | } |
| 104 | |
| 105 | static inline uint32_t Interp5(uint32_t c1, uint32_t c2) |
| 106 | { |
| 107 | //(c1+c2) >> 1; |
| 108 | return Interpolate_2(c1, 1, c2, 1, 1); |
| 109 | } |
| 110 | |
| 111 | static inline uint32_t Interp6(uint32_t c1, uint32_t c2, uint32_t c3) |
| 112 | { |
nothing calls this directly
no test coverage detected