• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Copyright 2016-2021 The Khronos Group Inc.
3# SPDX-License-Identifier: Apache-2.0
4
5#for file in spirv_*.{cpp,hpp} include/spirv_cross/*.{hpp,h} samples/cpp/*.cpp main.cpp
6for file in spirv_*.{cpp,hpp} main.cpp
7do
8    echo "Formatting file: $file ..."
9    clang-format -style=file -i $file
10done
11