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