aboutsummaryrefslogtreecommitdiff
path: root/source/print.h
AgeCommit message (Collapse)Author
2017-12-01Support outputting ANSI color escape sequences in libraryLei Zhang
Previously we required _PRINT to enable _COLOR, which forbids outputting colored disassembly into a string in library. This commit will allow library users to request enabling ANSI color escape sequences.
2016-09-02Relicense SPIRV-Tools under Apache 2.0David Neto
Fixes https://github.com/KhronosGroup/SPIRV-Tools/issues/383 Finalize v2016.4
2016-02-25Fix issues reported by cppcheck.Lei Zhang
Remove code not being used, add explicit to constructors, and add missing fields in constructors.
2016-01-07Extend copyright to 2016.Dejan Mircevski
2015-11-20Put DiagnosticStream and clr exports in libspirv namespaceDavid Neto
Each exported functions either has an "spv" prefix, or is inthe libspirv namespace. Fixes https://github.com/KhronosGroup/SPIRV-Tools/issues/18
2015-11-16Use Google comment style and fix typos.Lei Zhang
2015-11-10Run clang-format to enforce Google style globally.Lei Zhang
Note that we are more strict than Google style for one aspect: pointer/reference indicators are adjacent to their types, not their variables. find . -name "*.h" -exec clang-format -i {} \; find . -name "*.cpp" -exec clang-format -i {} \;
2015-11-02Inclusion guards follow Google C++ styleDavid Neto
Follow the scheme in http://google-styleguide.googlecode.com/svn/trunk/cppguide.html#The__define_Guard except: - 'include/' is dropped from the guard token - 'source/' is dropped from the guard token
2015-05-22Code drop of the Codeplay spirv-tools source.Kenneth Benzie (Benie)
This commit contains the source for the SPIRV static library, spirv-as, spirv-dis, and spirv-val tools.