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

Unified Diff: cc/resources/texture_compress/etc1.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/texture_compress/atc_dxt.cc ('k') | cc/resources/texture_compress/etc1.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/texture_compress/etc1.h
diff --git a/cc/resources/texture_compress/etc1.h b/cc/resources/texture_compress/etc1.h
new file mode 100644
index 0000000000000000000000000000000000000000..a7ed0b471db9f7606af81e47941b44426c9c998e
--- /dev/null
+++ b/cc/resources/texture_compress/etc1.h
@@ -0,0 +1,21 @@
+// 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_ETC1_H_
+#define CC_RESOURCES_TEXTURE_COMPRESS_ETC1_H_
+
+#include <stdint.h>
+
+#include "cc/base/cc_export.h"
+
+namespace etc1 {
+
+CC_EXPORT void CompressTexture(const uint8_t* src,
+ uint8_t* dst,
+ int width,
+ int height);
+
+} // namespace etc1
+
+#endif // CC_RESOURCES_TEXTURE_COMPRESS_ETC1_H_
« no previous file with comments | « cc/resources/texture_compress/atc_dxt.cc ('k') | cc/resources/texture_compress/etc1.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698