/vulkan-playground

Vulkan playground

Primary LanguageC++

Learning Vulkan

Hacky (but useful) Commands

Clang Tidy and Format

find ./src -iname *.h -o -iname *.cpp | xargs clang-tidy --format-style=file --fix --fix-errors && find ./src -iname *.h -o -iname *.cpp | xargs clang-format -i --style=microsoft

Just Clang Format

find ./src -iname *.h -o -iname *.cpp | xargs clang-format -i --style=microsoft

Just Clang Tidy

find ./src -iname *.h -o -iname *.cpp | xargs clang-tidy --format-style=file --fix --fix-errors