commit | 0e8de98a60e70bc2598f14df89ca1a2f5f0f0f1d | [log] [tgz] |
---|---|---|
author | Jeff McGlynn <jwmcglynn@google.com> | Thu Aug 16 17:03:50 2018 -0700 |
committer | Jeff McGlynn <jwmcglynn@google.com> | Thu Aug 16 17:03:50 2018 -0700 |
tree | ebf4d7242c397d31aafae6f4b1d991a2918caa2b | |
parent | 692fbf5865f2f5c470651aa0f56e491bbc7fffae [diff] |
Revert "Disable problematic test that trips ASAN" This reverts commit 692fbf5865f2f5c470651aa0f56e491bbc7fffae. The fix has been prepared and will be uploaded alongside this revert.
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.