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

Unified Diff: src/codec/SkPngFilters.h

Issue 1710083007: Update libpng to 1.6.22beta (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Keep the skia.googlesource mirror 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/codec/SkPngCodec.cpp ('k') | src/codec/SkPngFilters.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/codec/SkPngFilters.h
diff --git a/src/codec/SkPngFilters.h b/src/codec/SkPngFilters.h
deleted file mode 100644
index 32708107d0da3fc7e47b8f609ea869c6388a6681..0000000000000000000000000000000000000000
--- a/src/codec/SkPngFilters.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright 2016 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkPngFilters_DEFINED
-#define SkPngFilters_DEFINED
-
-#include "png.h"
-#include "SkTypes.h"
-
-// We don't bother specializing Up...
-// it's so simple it's usually already perfectly autovectorized.
-
-// These all require bpp=3 (i.e. RGB).
-void sk_sub3_sse2(png_row_infop, uint8_t*, const uint8_t*);
-void sk_avg3_sse2(png_row_infop, uint8_t*, const uint8_t*);
-void sk_paeth3_sse2(png_row_infop, uint8_t*, const uint8_t*);
-
-// These all require bpp=4 (i.e. RGBA).
-void sk_sub4_sse2(png_row_infop, uint8_t*, const uint8_t*);
-void sk_avg4_sse2(png_row_infop, uint8_t*, const uint8_t*);
-void sk_paeth4_sse2(png_row_infop, uint8_t*, const uint8_t*);
-
-#endif//SkPngFilterOpts_DEFINED
« no previous file with comments | « src/codec/SkPngCodec.cpp ('k') | src/codec/SkPngFilters.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698