ci: Add clang-format to CI

This also removes the extra .clang-format in the include directory

closes #78
This commit is contained in:
Juan Ramos 2023-11-10 13:17:53 -07:00 committed by Juan Ramos
parent daeab89bb9
commit 678ce607a0
26 changed files with 305 additions and 314 deletions

View file

@ -12,6 +12,8 @@
#include <string.h>
// clang-format off
typedef PFN_vkVoidFunction(VKAPI_PTR *PFN_GetPhysicalDeviceProcAddr)(VkInstance instance, const char *pName);
// Instance function pointer dispatch table
@ -1479,3 +1481,4 @@ static inline void vkuInitInstanceDispatchTable(VkInstance instance, VkuInstance
#endif // VK_USE_PLATFORM_SCREEN_QNX
table->GetPhysicalDeviceOpticalFlowImageFormatsNV = (PFN_vkGetPhysicalDeviceOpticalFlowImageFormatsNV)gipa(instance, "vkGetPhysicalDeviceOpticalFlowImageFormatsNV");
}
// clang-format on