| 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_
|
|
|