Bug: 111857829

Clone this repo:
  1. 17ae368 Merge remote-tracking branch 'aosp/upstream-master' into HEAD by Erwin Jansen · 5 years ago aosp-emu-30-release emu-29.0-release emu-30-release emu-31-release emu-31-stable-release emu-32-dev emu-32-release emu-33-dev emu-33-release emu-34-2-dev emu-34-2-release emu-34-3-release emu-34-release emu-35-1-release main master
  2. e0904c8 Merge pull request #2 from pokowaka/master by Jeff McGlynn · 5 years ago
  3. 513c172 Explicitly set ctest command. by Erwin Jansen · 5 years ago
  4. 500945d Merge pull request #1 from pokowaka/master by Jeff McGlynn · 5 years ago
  5. baf0508 CMake support to enable compilation under Visual Studio by Erwin Jansen · 5 years ago

astc-codec

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);

Building

With bazel

Install Bazel, and then run:

bazel build :astc_codec -c opt

astc-codec has been tested on Mac and Linux.

Run Tests

bazel test //...

With CMake

Install CMake, and the run:

mkdir build && cd build && cmake .. && make

Or open the project in your favorite IDE and import CMakeLists.txt.

Run Tests

In the build directory, execute:

ctest

Contributing

See CONTRIBUTING.md for important contributing requirements.

License

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.