Chromium Code Reviews| 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" | |
|
mtklein
2016/02/19 21:53:07
<stdint.h>, or "SkTypes.h"
| |
| 11 | |
| 12 void SkPaethEncode3(int width, const uint8_t* prev, const uint8_t* scanline, uin t8_t* out); | |
|
mtklein
2016/02/19 21:53:07
Note whether width is in bytes or pixels?
| |
| 13 void SkPaethEncode1(int width, const uint8_t* prev, const uint8_t* scanline, uin t8_t* out); | |
| 14 | |
| 15 #endif // SkPngPredictors_DEFINED | |
| OLD | NEW |