Mesa (21.1): freedreno: Add .clang-format

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Apr 15 09:00:48 UTC 2021


Module: Mesa
Branch: 21.1
Commit: 6d71157dc65b6c0b35cb180e960e4df36e4103cb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6d71157dc65b6c0b35cb180e960e4df36e4103cb

Author: Rob Clark <robdclark at chromium.org>
Date:   Fri Feb  5 12:22:59 2021 -0800

freedreno: Add .clang-format

Signed-off-by: Rob Clark <robdclark at chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10245>

---

 src/freedreno/.clang-format                 | 100 ++++++++++++++++++++++++++++
 src/gallium/drivers/freedreno/.clang-format |   1 +
 2 files changed, 101 insertions(+)

diff --git a/src/freedreno/.clang-format b/src/freedreno/.clang-format
new file mode 100644
index 00000000000..280f886e1c6
--- /dev/null
+++ b/src/freedreno/.clang-format
@@ -0,0 +1,100 @@
+AlignAfterOpenBracket: true
+AlignConsecutiveMacros: true
+AllowAllArgumentsOnNextLine: false
+AllowShortCaseLabelsOnASingleLine: false
+AllowShortFunctionsOnASingleLine: false
+AlwaysBreakAfterReturnType: TopLevelDefinitions
+BasedOnStyle: LLVM
+BraceWrapping:
+  AfterControlStatement: false
+  AfterEnum: false
+  AfterFunction: true
+  AfterStruct: false
+  BeforeElse: false
+  SplitEmptyFunction: true
+BinPackArguments: true
+BinPackParameters: true
+BreakBeforeBraces: Custom
+ColumnLimit: 80
+ContinuationIndentWidth: 3
+Cpp11BracedListStyle: false
+Cpp11BracedListStyle: true
+ForEachMacros:
+  - LIST_FOR_EACH_ENTRY
+  - LIST_FOR_EACH_ENTRY_SAFE
+  - list_for_each_entry
+  - list_for_each_entry_safe
+  - foreach_list_typed
+  - u_foreach_bit
+  - util_dynarray_foreach
+  - nir_foreach_variable
+  - nir_foreach_variable_safe
+  - nir_foreach_register
+  - nir_foreach_register_safe
+  - nir_foreach_use
+  - nir_foreach_use_safe
+  - nir_foreach_if_use
+  - nir_foreach_if_use_safe
+  - nir_foreach_def
+  - nir_foreach_def_safe
+  - nir_foreach_phi_src
+  - nir_foreach_phi_src_safe
+  - nir_foreach_parallel_copy_entry
+  - nir_foreach_instr
+  - nir_foreach_instr_reverse
+  - nir_foreach_instr_safe
+  - nir_foreach_instr_reverse_safe
+  - nir_foreach_function
+  - nir_foreach_block
+  - nir_foreach_block_safe
+  - nir_foreach_block_reverse
+  - nir_foreach_block_reverse_safe
+  - nir_foreach_block_in_cf_node
+  - nir_foreach_shader_in_variable
+  - nir_foreach_shader_out_variable_safe
+  - nir_foreach_variable_in_list
+  - nir_foreach_src
+  - foreach_two_lists
+  - foreach_bit
+  - foreach_sched_node
+  - foreach_src
+  - foreach_src_n
+  - foreach_ssa_use
+  - foreach_ssa_srcp_n
+  - foreach_ssa_srcp
+  - foreach_ssa_src_n
+  - foreach_ssa_src
+  - foreach_input_n
+  - foreach_input
+  - foreach_output_n
+  - foreach_output
+  - foreach_instr
+  - foreach_instr_rev
+  - foreach_instr_safe
+  - foreach_block
+  - foreach_block_safe
+  - foreach_block_rev
+  - foreach_array
+  - foreach_array_safe
+  - foreach_name_n
+  - foreach_name
+  - foreach_def
+  - foreach_use
+  - set_foreach
+
+IncludeBlocks: Preserve
+IncludeCategories:
+  - Regex:           '<[[:alnum:].]+>'
+    Priority:        1
+  - Regex:           '.*\/.*'
+    Priority:        2
+  - Regex:           '.*'
+    Priority:        3
+IndentWidth: 3
+PenaltyBreakBeforeFirstCallParameter: 1
+PenaltyExcessCharacter: 100
+SpaceAfterCStyleCast: false
+SpaceBeforeCpp11BracedList: false
+SpaceBeforeCtorInitializerColon: false
+SpacesInContainerLiterals: false
+
diff --git a/src/gallium/drivers/freedreno/.clang-format b/src/gallium/drivers/freedreno/.clang-format
new file mode 120000
index 00000000000..1b8fe3d9313
--- /dev/null
+++ b/src/gallium/drivers/freedreno/.clang-format
@@ -0,0 +1 @@
+../../../freedreno/.clang-format
\ No newline at end of file



More information about the mesa-commit mailing list