| Index: cc/resources/texture_compress/arm/etc1_neon.h
|
| diff --git a/cc/resources/texture_compress/arm/etc1_neon.h b/cc/resources/texture_compress/arm/etc1_neon.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..66d779640190470a027c06194af7d6a5134ae89e
|
| --- /dev/null
|
| +++ b/cc/resources/texture_compress/arm/etc1_neon.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_ARM_ETC1_NEON_H_
|
| +#define CC_RESOURCES_TEXTURE_COMPRESS_ARM_ETC1_NEON_H_
|
| +
|
| +#include <stdint.h>
|
| +
|
| +#include "cc/base/cc_export.h"
|
| +
|
| +namespace etc1_neon {
|
| +
|
| +CC_EXPORT void CompressTexture(const uint8_t* src,
|
| + uint8_t* dst,
|
| + int width,
|
| + int height);
|
| +
|
| +} // namespace etc1_neon
|
| +
|
| +#endif // CC_RESOURCES_TEXTURE_COMPRESS_ARM_ETC1_NEON_H_
|
|
|