egl: change a couple of clang-format settings

This code was written with 80-char lines in mind; changing that to 100
with the common .clang-format unnecessarily reflows a lot of code that
looks fine like this.

`AlwaysBreakAfterReturnType: All` might be something that we want
everywhere, but for now only set it here, to match existing code.

Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23398>
This commit is contained in:
Eric Engestrom 2023-06-01 14:54:56 +01:00 committed by Marge Bot
parent f5eec48799
commit 35d8db96ed

4
src/egl/.clang-format Normal file
View file

@ -0,0 +1,4 @@
BasedOnStyle: InheritParentConfig
ColumnLimit: 80
AlwaysBreakAfterReturnType: All