HLSL: Don't emit the builtin PerVertex array as inout.
[KhronosGroup/SPIRV-Cross.git] / format_all.sh
blob001c3c5dd4bda595ed68c24654f741d708fe6d80
1 #!/bin/bash
2 # Copyright 2016-2021 The Khronos Group Inc.
3 # SPDX-License-Identifier: Apache-2.0
5 #for file in spirv_*.{cpp,hpp} include/spirv_cross/*.{hpp,h} samples/cpp/*.cpp main.cpp
6 for file in spirv_*.{cpp,hpp} main.cpp
7 do
8 echo "Formatting file: $file ..."
9 clang-format -style=file -i $file
10 done