mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-10-31 08:16:03 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			773 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			773 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| cd "$(dirname $0)/../src"
 | |
| 
 | |
| echo "Running clang-format in $(pwd)"
 | |
| 
 | |
| find . -regex '.*\.[chm]p*' -exec clang-format -i {} \;
 | |
| 
 | |
| # Revert third-party code
 | |
| git checkout \
 | |
|     events/imKStoUCS.* \
 | |
|     hidapi \
 | |
|     joystick/controller_type.c \
 | |
|     joystick/controller_type.h \
 | |
|     joystick/hidapi/steam/controller_constants.h \
 | |
|     joystick/hidapi/steam/controller_structs.h \
 | |
|     libm \
 | |
|     stdlib/SDL_malloc.c \
 | |
|     stdlib/SDL_qsort.c \
 | |
|     stdlib/SDL_strtokr.c \
 | |
|     video/arm \
 | |
|     video/khronos \
 | |
|     video/x11/edid-parse.c \
 | |
|     video/yuv2rgb
 | |
| clang-format -i hidapi/SDL_hidapi.c
 | |
| 
 | |
| # Revert generated code
 | |
| git checkout dynapi/SDL_dynapi_overrides.h
 | |
| git checkout dynapi/SDL_dynapi_procs.h
 | |
| git checkout render/metal/SDL_shaders_metal_*.h
 | |
| 
 | |
| echo "clang-format complete!"
 | 
