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

Unified Diff: third_party/WebKit/Source/platform/image-encoders/RGBAtoRGB.h

Issue 2878333004: Use SkJpegEncoder in WebKit platform (Closed)
Patch Set: Create instead of Make Created 3 years, 7 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 | « third_party/WebKit/Source/platform/image-encoders/JPEGImageEncoderTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/image-encoders/RGBAtoRGB.h
diff --git a/third_party/WebKit/Source/platform/image-encoders/RGBAtoRGB.h b/third_party/WebKit/Source/platform/image-encoders/RGBAtoRGB.h
deleted file mode 100644
index 56445c6597d81eeb24bc03d7c2b703ccb5ff9a3d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/image-encoders/RGBAtoRGB.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef RGBAtoRGB_h
-#define RGBAtoRGB_h
-
-// TODO(cavalcantii): use regular macro, see https://crbug.com/673067.
-#ifdef __ARM_NEON__
-#include <arm_neon.h>
-#define RGBAtoRGB RGBAtoRGBNeon
-#else
-#define RGBAtoRGB RGBAtoRGBScalar
-#endif
-
-#include "platform/PlatformExport.h"
-
-namespace blink {
-PLATFORM_EXPORT void RGBAtoRGBScalar(const unsigned char* pixels,
- unsigned pixel_count,
- unsigned char* output);
-#ifdef __ARM_NEON__
-PLATFORM_EXPORT void RGBAtoRGBNeon(const unsigned char* input,
- const unsigned pixel_count,
- unsigned char* output);
-#endif
-
-} // namespace blink
-
-#endif
« no previous file with comments | « third_party/WebKit/Source/platform/image-encoders/JPEGImageEncoderTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698