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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_RESOURCES_TEXTURE_COMPRESS_ARM_ATC_DXT_NEON_H_
6 #define CC_RESOURCES_TEXTURE_COMPRESS_ARM_ATC_DXT_NEON_H_
7
8 #include <stdint.h>
9
10 #include "cc/base/cc_export.h"
11
12 namespace cc {
13 namespace texture_compress {
14
15 CC_EXPORT void CompressDXT1_NEON(const uint8_t* src,
16 uint8_t* dst,
17 int width,
18 int height);
19 CC_EXPORT void CompressDXT5_NEON(const uint8_t* src,
20 uint8_t* dst,
21 int width,
22 int height);
23 CC_EXPORT void CompressATC_NEON(const uint8_t* src,
24 uint8_t* dst,
25 int width,
26 int height);
27 CC_EXPORT void CompressATCIA_NEON(const uint8_t* src,
28 uint8_t* dst,
29 int width,
30 int height);
31
32 } // namespace texture_compress
33 } // namespace cc
34
35 #endif // CC_RESOURCES_TEXTURE_COMPRESS_ARM_ATC_DXT_NEON_H_
OLDNEW
« 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