Home | History | Annotate | Line # | Download | only in vulkan
      1 BasedOnStyle: LLVM
      2 AlwaysBreakAfterReturnType: TopLevel
      3 BinPackParameters: false
      4 BraceWrapping:
      5   AfterControlStatement: false
      6   AfterEnum: false
      7   AfterFunction: true
      8   AfterStruct: false
      9   BeforeElse: false
     10   SplitEmptyFunction: true
     11 BreakBeforeBraces: Custom
     12 ColumnLimit: 78
     13 ContinuationIndentWidth: 3
     14 Cpp11BracedListStyle: false
     15 ForEachMacros:
     16   - list_for_each_entry
     17   - list_for_each_entry_safe
     18   - vk_outarray_append
     19   - vk_foreach_struct
     20   - vk_foreach_struct_const
     21 IncludeBlocks: Regroup
     22 IncludeCategories:
     23   - Regex:           '^"vn_common.h"$'
     24     Priority:        0
     25   - Regex:           '^"vn_'
     26     Priority:        3
     27   - Regex:           '^"(venus-protocol/|virtio-gpu/|vtest/)'
     28     Priority:        2
     29   - Regex:           '^"(c11/|util/|drm-uapi/|vk_|wsi_|git_)'
     30     Priority:        2
     31   - Regex:           '.*'
     32     Priority:        1
     33 IndentWidth: 3
     34 PenaltyBreakBeforeFirstCallParameter: 1
     35 PenaltyExcessCharacter: 100
     36 SpaceAfterCStyleCast: false
     37 SpaceBeforeCpp11BracedList: false
     38 SpaceBeforeParens: ControlStatementsExceptForEachMacros
     39