Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: src/pdf/SkPngPredictors.h

Issue 1686313005: SkPDF: Implement Paeth predictor for images. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2016-02-19 (Friday) 15:12:05 EST Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698