aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-06-17Use C++11-compatible assertions in constexpr functionsupstream-masterBenjamin Barenblat
C++11 restricts the bodies of constexpr functions more aggressively than C++14 or later. Introduce and use a C++11-compatible macro for assertions in constexpr functions.
2019-01-26Fixed repeated variable name in README.md’s sampleAlexander Böhn
… Both the output `std::vector<uint8_t>` and the success/fail `bool` were named `result` – which that wouldn’t work. How about `bool success`?
2019-01-24Small fixes to build files and readmeJeff McGlynn
* Remove duplicate https:// * Update test library to use @gtest//:gtest instead of gtest_main * Declare hdrs in astc_codec library.
2019-01-24Sync/format build filesJeff McGlynn
* Always compile astc_utils with -O3, since it is very slow when built with fastbuild. * Add missing licenses() declarations. * Declare test library as testonly. * Run BUILD file formatter. Additionally, fix one ambiguous usage of auto in src/decoder/parition.cc
2019-01-23Add CI config files for continuous/presubmit buildsJeff McGlynn
2019-01-23Update honggfuzz, fix compilation errors with gccJeff McGlynn
* Compile with -std=c11 * Update to honggfuzz-1.7.
2019-01-23Add a CI script for LinuxJeff McGlynn
2019-01-23Update to build with the latest version of bazelJeff McGlynn
* http_archive and git_repository are now skylark rules, update to use them. * new_http_archive has been merged with http_archive, and takes a label for build_file instead of a path. Add an empty third_party/BUILD file so that we can reference the label. * Rename tools/bazel.rc to .bazelrc
2018-11-28Merge pull request #2 from pokowaka/masterJeff McGlynn
Explicitly set ctest command.
2018-11-27Explicitly set ctest command.Erwin Jansen
Some generators have trouble finding base_test if this project is included as a subproject. Explicitly setting the test name and executable command will fix this issue.
2018-11-27Merge pull request #1 from pokowaka/masterJeff McGlynn
CMake support to enable compilation under Visual Studio
2018-11-27CMake support to enable compilation under Visual StudioErwin Jansen
- Add support for cmake - Template fix to enable compilation with visual studio. - Exclusion of static type tests under visual studio - Fix unit tests due to declaration issues Note we do not build the fuzzing target. Test: All unit tests green on VS2017, MacOs, Linux Change-Id: Ie8437f61d187fff03279c99fde0ff565e8f39b50
2018-08-16Fix ASAN failures in integer_sequence_codec and partitionJeff McGlynn
Introduce UTILS_RELEASE_ASSERT, which crashes if the condition isn't met, even on release builds. Update integer_sequence_codec and partition to use the new tests to validate input parameters, and update the tests so that they expect the crash to occur even on release builds. Bug: 112691516, 112669735 Change-Id: Ic82edeffc64ca0f2b0d17f1c63563dfd8d9cdd71
2018-08-15Fix compilation errors with mingwJeff McGlynn
Fix minor build errors when building with mingw in the Android Emulator's build system: * Passing initializer list to pushAll helper can't deduce template argument with mingw, fix by adding an explicit type. * Add inline to image_utils helpers so that mingw doesn't think that the functions are declared but not used. Change-Id: I223e1a74380f9990dbab13ce41e377c3004f43b0
2018-08-07Fix build errors when used by the Android EmulatorJeff McGlynn
In the Android Emulator, there are two main differences: 1) googletest is the shared version 1.8.0, instead of the later commit used by astc-codec (to get bazel support). 2) Unit tests are all linked together into one binary, so one function needs to be marked "static".
2018-07-26Remove third_party/googletest and reference git repo insteadJeff McGlynn
Use a Bazel git_repository rule to reference the git repository instead of bundling the source. Change-Id: I32a0970178cb87fbf0e381db2e2d51fcccab542f
2018-07-06Fix compilation with mingwJeff McGlynn
On mingw, "IntType data_ = 0" fails to compile. Update to use IntType() instead. Change-Id: I706c15ddb993091aeb922ba7d9ef8cc4cc23bd64
2018-06-20Initial version of astc-codec for open source releaseJeff McGlynn
Contains an implementation of an ASTC decoder that is able to pass the dEQP ASTC LDR tests. astc-codec has no external dependencies for the main library, only for test code, and is licensed under the Apache license. Components: include/ - Public API that can decode ASTC LDR data into a RGBA UNORM8 buffer. src/base/ - Base library with common functionality not directly related to ASTC decoding. Contains a uint128 implementation, BitStream for reading/writing bits with a primitive (or uint128 type), Optional implementation (to not take a dependency on C++17), and more. src/decoder/ - Internal implementation of the ASTC decoder. src/base/test/, src/decoder/test/ - Unit tests (and a fuzzing test) for the astc decoder. src/decoder/testdata/ - Sample ASTC images and golden image results for testing. src/decoder/tools/ - A tool to inspect contents of an ASTC file. third_party/ - Third party libraries, only used for tests. Change-Id: Ia98e5a7dc847daa3d3a48c5e62d94b8fb1cb98bd
2018-06-18Set up build system and add dependencies to WORKSPACEJeff McGlynn
2018-06-18Merge commit 'fa9c8eaf4fe936f35dd95a1eecfbbb228494522d' as ↵Jeff McGlynn
'third_party/googletest'
2018-06-18Squashed 'third_party/googletest/' content from commit ba96d0b1Jeff McGlynn
git-subtree-dir: third_party/googletest git-subtree-split: ba96d0b1161f540656efdaed035b3c062b60e006
2018-06-18Add license and README based on Google open source templateJeff McGlynn