-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial import from dagor4 repo on 2023/09/15, rev bd13cb3e43d51b1e16…
…daa6d06d4011139f91fbe0
- Loading branch information
1 parent
1f8a1e0
commit 98b313a
Showing
22,461 changed files
with
8,014,918 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
--- | ||
BasedOnStyle: Microsoft | ||
AlignAfterOpenBracket: DontAlign | ||
AlignConsecutiveMacros: | ||
Enabled: true | ||
AcrossEmptyLines: false | ||
AcrossComments: true | ||
AlignCompound: false | ||
PadOperators: false | ||
AlignEscapedNewlines: Left | ||
AllowShortEnumsOnASingleLine: true | ||
AllowShortBlocksOnASingleLine: true | ||
AllowShortCaseLabelsOnASingleLine: true | ||
AllowShortFunctionsOnASingleLine: All | ||
AlwaysBreakTemplateDeclarations: Yes | ||
BraceWrapping: | ||
AfterCaseLabel: true | ||
AfterUnion: true | ||
BeforeLambdaBody: false | ||
SplitEmptyFunction: false | ||
SplitEmptyRecord: false | ||
SplitEmptyNamespace: false | ||
BreakConstructorInitializers: AfterColon | ||
ColumnLimit: 135 | ||
CommentPragmas: '^-V\d+' | ||
ConstructorInitializerIndentWidth: 2 | ||
ContinuationIndentWidth: 2 | ||
ForEachMacros: | ||
- FOR_EACH_RG_LAYER_DO | ||
- FOR_EACH_PRIMARY_RG_LAYER_DO | ||
- FOR_EACH_RG_LAYER_RENDER | ||
- ITERATE_OVER_SUBFX | ||
StatementMacros: ['DAG_DECLARE_NEW', 'decl_ptr', 'decl_dclass_hdr', 'decl_class_name', 'decl_issubof'] | ||
IfMacros: ['IF_CONSTEXPR'] | ||
IndentCaseLabels: true | ||
IndentWidth: 2 | ||
MacroBlockBegin: "^(\ | ||
BEGIN_BITFIELD_TYPE|\ | ||
decl_dclass|\ | ||
decl_dclass_and_id|\ | ||
(DX12|VULKAN)_BEGIN_CONTEXT_COMMAND(_EXT_[0-9])?|\ | ||
ITERATE_OVER_OBJECT_POOL(_(LOCK|BEG))?|\ | ||
BINDUMP_BEGIN_LAYOUT|\ | ||
BINDUMP_BEGIN_EXTEND_LAYOUT\ | ||
)$" | ||
MacroBlockEnd: "^(\ | ||
END_BITFIELD_TYPE|\ | ||
end_dclass_decl|\ | ||
(DX12|VULKAN)_END_CONTEXT_COMMAND|\ | ||
ITERATE_OVER_OBJECT_POOL_(UNLOCK|END|RESTORE|DESTROY)|\ | ||
BINDUMP_END_LAYOUT|\ | ||
BINDUMP_END_LAYOUT\ | ||
)$" | ||
MaxEmptyLinesToKeep: 2 | ||
PackConstructorInitializers: NextLine | ||
PenaltyBreakOpenParenthesis: 1 | ||
PenaltyBreakComment: 1 | ||
SortIncludes: Never | ||
TabWidth: 2 | ||
... |
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,19 @@ | ||
* text=auto | ||
*.cpp text | ||
*.h text | ||
*.cc text | ||
*.c text | ||
*.hpp text | ||
*.inl text | ||
*.inc text | ||
*.jam text | ||
*jamfile text | ||
*.py text | ||
*.nut text | ||
*.as text | ||
*.tis text | ||
*.png binary | ||
*.jpg binary | ||
*.sh text text | ||
*.plist text eol=lf | ||
*compile_shaders*.sh text eol=lf |
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,13 @@ | ||
/tools/ | ||
/samples/physTest | ||
/samples/*/develop | ||
/samples/*/game* | ||
/samples/*/tools | ||
/samples/*/application.blk | ||
/outerSpace/develop | ||
/outerSpace/game* | ||
/outerSpace/tools | ||
/outerSpace/application.blk | ||
/_output/ | ||
*.pyc | ||
*.das.inl |
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 @@ | ||
bd13cb3e43d51b1e16daa6d06d4011139f91fbe0 |
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
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,33 @@ | ||
pushd prog\tools | ||
call build_dagor3_cdk_mini.cmd | ||
call build_dagor3_cdk_mini.cmd | ||
popd | ||
|
||
pushd prog\tools\dargbox | ||
call create_vfsroms.bat | ||
cd shaders | ||
call compile_shaders_pc11.bat | ||
popd | ||
|
||
pushd prog\samples\physTest | ||
jam | ||
jam -f jamfile-test-jolt | ||
cd shaders | ||
call compile_game_shaders-dx11.bat | ||
popd | ||
|
||
pushd samples\skiesSample\prog | ||
jam | ||
cd shaders | ||
call compile_shaders_dx12.bat | ||
call compile_shaders_pc11.bat | ||
call compile_shaders_tools.bat | ||
popd | ||
|
||
pushd samples\testGI\prog | ||
jam | ||
cd shaders | ||
call compile_shaders_dx12.bat | ||
call compile_shaders_pc11.bat | ||
call compile_shaders_tools.bat | ||
popd |
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,9 @@ | ||
pushd samples\skiesSample\develop | ||
call dabuild.cmd | ||
popd | ||
|
||
pushd samples\testGI\develop | ||
call dabuild.cmd | ||
cd gui | ||
call create_fonts.bat | ||
popd |
Oops, something went wrong.