commit | 692fbf5865f2f5c470651aa0f56e491bbc7fffae | [log] [tgz] |
---|---|---|
author | Lingfeng Yang <lfy@google.com> | Thu Aug 16 07:56:59 2018 -0700 |
committer | Lingfeng Yang <lfy@google.com> | Thu Aug 16 07:57:25 2018 -0700 |
tree | 7f04579e42a5cb97cd5f5f6a9a786d4eb0211235 | |
parent | 25cbdeb0d90a46092b26a689f3b4e75ada4d0d7b [diff] |
Disable problematic test that trips ASAN bug: 112691516 Change-Id: I129db7811e251f200f33d710409397e651d8a600
astc-codec is a software ASTC decoder implementation, which supports the ASTC LDR profile.
Example usage:
#include <astc-codec/astc-codec.h> // ... std::vector<uint8_t> astc = LoadMyASTCData(); const size_t width = 640; const size_t height = 480; std::vector<uint8_t> result; result.resize(width * height * 4); bool result = astc_codec::ASTCDecompressToRGBA( astc.data(), astc.size(), width, height, astc_codec::FootprintType::k4x4, result.data(), result.size(), /* stride */ width * 4);
Install Bazel, and then run:
bazel build :astc_codec -c opt
astc-codec has been tested on Mac and Linux.
bazel test //...
See CONTRIBUTING.md for important contributing requirements.
astc-codec project is licensed under the Apache License Version 2.0. You can find a copy of it in LICENSE.
This is not an officially supported Google product.