xref: /aosp_15_r20/external/mesa3d/src/virtio/vulkan/.clang-format (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1
2BasedOnStyle: InheritParentConfig
3DisableFormat: false
4
5AlwaysBreakAfterReturnType: TopLevel
6BinPackParameters: false
7
8ColumnLimit: 78
9
10Cpp11BracedListStyle: false
11
12IncludeBlocks: Regroup
13IncludeCategories:
14  - Regex:           '^"vn_common.h"$'
15    Priority:        0
16  - Regex:           '^"vn_'
17    Priority:        3
18  - Regex:           '^"(venus-protocol/|virtio-gpu/|vtest/)'
19    Priority:        2
20  - Regex:           '^"(c11/|util/|drm-uapi/|vk_|wsi_|git_)'
21    Priority:        2
22  - Regex:           '.*'
23    Priority:        1
24
25ForEachMacros:
26  - vk_outarray_append_typed
27
28SpaceBeforeParens: ControlStatementsExceptForEachMacros
29