OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2016 Google Inc. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. |
| 6 */ |
| 7 #ifndef SkPngPredictors_DEFINED |
| 8 #define SkPngPredictors_DEFINED |
| 9 |
| 10 #include "stdint.h" |
| 11 |
| 12 uint8_t SkPngEncode3(int width, const uint8_t* prev, |
| 13 const uint8_t* scanline, uint8_t* out); |
| 14 |
| 15 uint8_t SkPngEncode1(int width, const uint8_t* prev, |
| 16 const uint8_t* scanline, uint8_t* out); |
| 17 |
| 18 uint8_t SkPaethEncode3(int width, const uint8_t* prev, |
| 19 const uint8_t* scanline, uint8_t* out); |
| 20 |
| 21 uint8_t SkPaethEncode1(int width, const uint8_t* prev, |
| 22 const uint8_t* scanline, uint8_t* out); |
| 23 |
| 24 #endif // SkPngPredictors_DEFINED |
OLD | NEW |