-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wine 10.0 v2 patchset (10.0-7) (force-pushed small hotfix)
- Rebase wine/staging - Fix issue with esync/fsync which was breaking some programs (dnspy, specifically) - Not sure what the exact problem was, but I rebased esync/fsync/ntsync more carefully and this alleviated the issue. - Add EDID generation patch from Proton to fix dxvk "failed to obtain EDID" error - Some more NtYieldExecution experiments - Misc. build optimizations and dev environment improvement patches (to PKGBUILD as well) - Build with llvm-mingw's bundled clang+clang-msvc toolchain by default (instead of bundled clang + mingw-clang) - Other patch housekeeping/cleanup
- Loading branch information
Showing
265 changed files
with
5,489 additions
and
7,087 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
131 changes: 131 additions & 0 deletions
131
...-Draft-Add-clang-format-configuration-file/0001-Add-clang-format-configuration-file.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
From 5d20ea83485b9cc2da9e8a5bd051be798635370f Mon Sep 17 00:00:00 2001 | ||
From: Davide Beatrici <[email protected]> | ||
Date: Thu, 27 Jun 2024 03:35:57 +0200 | ||
Subject: [PATCH] Add clang-format configuration file | ||
|
||
--- | ||
.clang-format | 112 +++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
1 file changed, 112 insertions(+) | ||
create mode 100644 .clang-format | ||
|
||
diff --git a/.clang-format b/.clang-format | ||
new file mode 100644 | ||
index 00000000000..8434c6c792c | ||
--- /dev/null | ||
+++ b/.clang-format | ||
@@ -0,0 +1,112 @@ | ||
+Language: Cpp | ||
+ | ||
+AlignAfterOpenBracket: Align | ||
+AlignArrayOfStructures: None # This affects everything, we want "Right" just for digits | ||
+AlignConsecutiveAssignments: | ||
+ Enabled: false | ||
+ AcrossComments: true | ||
+ AcrossEmptyLines: false | ||
+ AlignCompound: true | ||
+ PadOperators: true | ||
+AlignConsecutiveBitFields: | ||
+ Enabled: true | ||
+ AcrossComments: true | ||
+ AcrossEmptyLines: false | ||
+AlignConsecutiveDeclarations: | ||
+ Enabled: false | ||
+ AcrossComments: false | ||
+ AcrossEmptyLines: false | ||
+ AlignFunctionPointers: true | ||
+AlignConsecutiveMacros: | ||
+ Enabled: true | ||
+ AcrossComments: true | ||
+ AcrossEmptyLines: false | ||
+AlignConsecutiveShortCaseStatements: | ||
+ Enabled: true | ||
+ AcrossComments: true | ||
+ AcrossEmptyLines: false | ||
+AlignEscapedNewlines: DontAlign # Set to LeftWithLastLine when supported | ||
+AlignOperands: Align | ||
+AlignTrailingComments: | ||
+ Kind: Always | ||
+ OverEmptyLines: 0 | ||
+AllowAllArgumentsOnNextLine: false | ||
+AllowAllParametersOfDeclarationOnNextLine: false | ||
+AllowShortBlocksOnASingleLine: Empty | ||
+AllowShortCaseLabelsOnASingleLine: false | ||
+AllowShortEnumsOnASingleLine: true | ||
+AllowShortFunctionsOnASingleLine: Empty | ||
+AllowShortIfStatementsOnASingleLine: Never | ||
+AllowShortLoopsOnASingleLine: true | ||
+AlwaysBreakAfterReturnType: None | ||
+AlwaysBreakBeforeMultilineStrings: false | ||
+BinPackArguments: true | ||
+BinPackParameters: true | ||
+BraceWrapping: | ||
+ AfterCaseLabel: true | ||
+ AfterClass: true | ||
+ AfterControlStatement: Always | ||
+ AfterEnum: true | ||
+ AfterFunction: true | ||
+ AfterNamespace: true | ||
+ AfterStruct: true | ||
+ AfterUnion: true | ||
+ AfterExternBlock: true | ||
+ BeforeElse: true | ||
+ BeforeWhile: false | ||
+ IndentBraces: false | ||
+ SplitEmptyFunction: true | ||
+ SplitEmptyRecord: true | ||
+ SplitEmptyNamespace: true | ||
+BreakAdjacentStringLiterals: false | ||
+BreakBeforeBinaryOperators: None | ||
+BreakBeforeBraces: Custom | ||
+BreakBeforeTernaryOperators: false | ||
+BreakStringLiterals: false | ||
+ColumnLimit: 100 | ||
+ContinuationIndentWidth: 8 | ||
+IncludeBlocks: Preserve | ||
+IndentCaseBlocks: false | ||
+IndentCaseLabels: false | ||
+IndentExternBlock: false | ||
+IndentGotoLabels: false | ||
+IndentPPDirectives: None | ||
+IndentWidth: 4 | ||
+IndentWrappedFunctionNames: false | ||
+InsertBraces: false | ||
+InsertNewlineAtEOF: true | ||
+InsertTrailingCommas: None | ||
+KeepEmptyLinesAtEOF: false | ||
+KeepEmptyLinesAtTheStartOfBlocks: false | ||
+LineEnding: LF | ||
+MaxEmptyLinesToKeep: 1 | ||
+PPIndentWidth: 0 | ||
+PointerAlignment: Right | ||
+QualifierAlignment: Leave | ||
+ReferenceAlignment: Pointer | ||
+ReflowComments: true | ||
+SkipMacroDefinitionBody: true | ||
+SortIncludes: Never # Otherwise breakage ensues when headers must be included in a specific order | ||
+SpaceAfterLogicalNot: false | ||
+SpaceAroundPointerQualifiers: Default | ||
+SpaceBeforeAssignmentOperators: true | ||
+SpaceBeforeCaseColon: false | ||
+SpaceBeforeParens: ControlStatementsExceptControlMacros | ||
+SpaceBeforeSquareBrackets: false | ||
+SpaceInEmptyBlock: false | ||
+SpacesBeforeTrailingComments: 1 | ||
+SpacesInContainerLiterals: true | ||
+SpacesInLineCommentPrefix: | ||
+ Maximum: -1 | ||
+ Minimum: 1 | ||
+SpacesInParens: Custom | ||
+SpacesInParensOptions: | ||
+ ExceptDoubleParentheses: true | ||
+ InConditionalStatements: false | ||
+ InEmptyParentheses: false | ||
+ InCStyleCasts: false | ||
+ Other: true | ||
+SpacesInConditionalStatements: false | ||
+SpacesInSquareBrackets: false | ||
+TabWidth: 4 | ||
+UseTab: Never | ||
-- | ||
GitLab | ||
|
49 changes: 0 additions & 49 deletions
49
...ders-part-3-3/0001-wined3d-Feed-WINED3D-RS-POINTSIZE-through-a-push-constant-buffer.patch
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
...FP-HLSL-shaders-part-3-3/0002-wined3d-Implement-point-size-in-the-HLSL-FFP-pipeline.patch
This file was deleted.
Oops, something went wrong.
78 changes: 0 additions & 78 deletions
78
...SL-shaders-part-3-3/0003-wined3d-Implement-vertex-blending-in-the-HLSL-FFP-pipeline.patch
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.