mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-10 06:00:07 +00:00
8 lines
157 B
Bash
8 lines
157 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for file in spirv_*.{cpp,hpp} include/spirv_cross/*.{hpp,h}
|
||
|
do
|
||
|
echo "Formatting file: $file ..."
|
||
|
clang-format -style=file -i $file
|
||
|
done
|