mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-23 00:39:40 +00:00
8 lines
196 B
Bash
Executable File
8 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for file in vulkan/*.{cpp,hpp} vulkan/wsi/*.{cpp,hpp} *.cpp renderer/*.{cpp,hpp} atlas/*.{cpp,hpp}
|
|
do
|
|
echo "Formatting file: $file ..."
|
|
clang-format -style=file -i $file
|
|
done
|