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

Unified Diff: cc/resources/texture_compress/arm/atc_dxt_neon.h

Issue 793693003: Tile Compression (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « cc/resources/scoped_resource_unittest.cc ('k') | cc/resources/texture_compress/arm/atc_dxt_neon.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/texture_compress/arm/atc_dxt_neon.h
diff --git a/cc/resources/texture_compress/arm/atc_dxt_neon.h b/cc/resources/texture_compress/arm/atc_dxt_neon.h
new file mode 100644
index 0000000000000000000000000000000000000000..d59114996d21661d6d33936ade779d050ff46ed3
--- /dev/null
+++ b/cc/resources/texture_compress/arm/atc_dxt_neon.h
@@ -0,0 +1,35 @@
+// Copyright 2014 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 CC_RESOURCES_TEXTURE_COMPRESS_ARM_ATC_DXT_NEON_H_
+#define CC_RESOURCES_TEXTURE_COMPRESS_ARM_ATC_DXT_NEON_H_
+
+#include <stdint.h>
+
+#include "cc/base/cc_export.h"
+
+namespace cc {
+namespace texture_compress {
+
+CC_EXPORT void CompressDXT1_NEON(const uint8_t* src,
+ uint8_t* dst,
+ int width,
+ int height);
+CC_EXPORT void CompressDXT5_NEON(const uint8_t* src,
+ uint8_t* dst,
+ int width,
+ int height);
+CC_EXPORT void CompressATC_NEON(const uint8_t* src,
+ uint8_t* dst,
+ int width,
+ int height);
+CC_EXPORT void CompressATCIA_NEON(const uint8_t* src,
+ uint8_t* dst,
+ int width,
+ int height);
+
+} // namespace texture_compress
+} // namespace cc
+
+#endif // CC_RESOURCES_TEXTURE_COMPRESS_ARM_ATC_DXT_NEON_H_
« no previous file with comments | « cc/resources/scoped_resource_unittest.cc ('k') | cc/resources/texture_compress/arm/atc_dxt_neon.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698