mirror of
https://github.com/charles-lunarg/vk-bootstrap.git
synced 2024-11-10 02:41:47 +00:00
d9ca075c86
Library contains barebones implementations for simplified Instance creation Physical Device selection Device creation Swapchain Creation/Recreation Much of the repo is WIP, and there is little to no testing. Also, while a single header file is desired for the future, currently it is structured more like a normal project with .cpp files
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
BasedOnStyle: LLVM
|
|
|
|
AccessModifierOffset: 0
|
|
AlignEscapedNewlinesLeft: false
|
|
AlignTrailingComments: true
|
|
AlignAfterOpenBracket: DontAlign
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
AllowShortFunctionsOnASingleLine: true
|
|
AllowShortIfStatementsOnASingleLine: true
|
|
AllowShortLoopsOnASingleLine: false
|
|
AlwaysBreakBeforeMultilineStrings: false
|
|
AlwaysBreakTemplateDeclarations: false
|
|
BinPackArguments: false
|
|
BinPackParameters: false
|
|
BreakBeforeBinaryOperators: false
|
|
BreakBeforeBraces: Allman
|
|
BreakBeforeTernaryOperators: false
|
|
BreakConstructorInitializersBeforeComma: false
|
|
ColumnLimit: 100
|
|
CommentPragmas: ''
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
ConstructorInitializerIndentWidth: 0
|
|
ContinuationIndentWidth: 4
|
|
Cpp11BracedListStyle: false
|
|
DerivePointerBinding: false
|
|
IndentCaseLabels: true
|
|
IndentFunctionDeclarationAfterType: false
|
|
IndentWidth: 4
|
|
Language: Cpp
|
|
MaxEmptyLinesToKeep: 4
|
|
NamespaceIndentation: None
|
|
PenaltyBreakBeforeFirstCallParameter: 100
|
|
PenaltyBreakComment: 100
|
|
PenaltyBreakFirstLessLess: 0
|
|
PenaltyBreakString: 100
|
|
PenaltyExcessCharacter: 1
|
|
PenaltyReturnTypeOnItsOwnLine: 20
|
|
PointerBindsToType: true
|
|
SpaceBeforeAssignmentOperators: true
|
|
SpaceBeforeParens: Always
|
|
SpaceInEmptyParentheses: false
|
|
SpacesBeforeTrailingComments: 1
|
|
SpacesInAngles: false
|
|
SpacesInCStyleCastParentheses: false
|
|
SpacesInContainerLiterals: false
|
|
SpacesInParentheses: false
|
|
Standard: Auto
|
|
TabWidth: 4
|
|
UseTab: ForIndentation
|
|
SortIncludes: false |