Skip to content

Commit

Permalink
resolving conflicts with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
S-Marais committed Jun 1, 2022
2 parents 1efc273 + 4ba9e70 commit ca2bcab
Show file tree
Hide file tree
Showing 253 changed files with 619,336 additions and 1,457 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ about: Suggest an idea for this project
title: "[FEATURE]"
labels: enhancement
assignees: travisvroman

project: travisvroman/kohi
---

**Is your feature request related to a problem? Please describe.**
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
bin/
obj/
obj/
*.spv
docs/
3 changes: 2 additions & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"_DEBUG",
"UNICODE",
"_UNICODE",
"KEXPORT"
"KEXPORT",
"_GNU_SOURCE"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
Expand Down
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"ms-vscode.cpptools",
"tomphilbin.gruvbox-themes",
"wayou.vscode-todo-highlight",
"slevesque.shader"
"slevesque.shader",
"cschlosser.doxdocgen"
]
}
16 changes: 16 additions & 0 deletions .vscode/keybindings.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,21 @@
"key": "ctrl+shift+c",
"command": "workbench.action.tasks.runTask",
"args": "Clean Everything"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+alt+-",
"command": "-workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.navigateForward"
}
]
56 changes: 48 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
"editor.minimap.enabled": false,
"terminal.integrated.shell.windows": "c:/Program Files/PowerShell/7/pwsh.exe",
"terminal.integrated.fontWeight": "1",
"editor.fontFamily": "Liberation Mono",
"editor.fontSize": 16,
"editor.fontWeight": "1",
"workbench.editor.showTabs": false,
"workbench.editor.showTabs": true,
"workbench.activityBar.visible": true,
"workbench.colorCustomizations": {
"editorCursor.foreground": "#00ff33",
Expand All @@ -30,22 +29,25 @@
{
"text": "TODO:",
"color": "red",
"backgroundColor": "rgba(0,0,0,0)"
"backgroundColor": "rgba(0,0,0,0)",
"overviewRulerColor": "rgba(0,0,0,0)"
},
{
"text": "HACK:",
"color": "#ff6600",
"backgroundColor": "rgba(0,0,0,0)"
"backgroundColor": "rgba(0,0,0,0)",
"overviewRulerColor": "rgba(0,0,0,0)"
},
{
"text": "NOTE:",
"color": "green",
"backgroundColor": "rgba(0,0,0,0)"
"backgroundColor": "rgba(0,0,0,0)",
"overviewRulerColor": "rgba(0,0,0,0)"
}
],
"todohighlight.defaultStyle": {
"color": "red",
"backgroundColor": "#ffab00",
//"backgroundColor": "#ffab00",
"overviewRulerColor": "rgba(0,0,0,0)",
"isWholeLine": false,
},
Expand All @@ -67,6 +69,44 @@
"vulkan_types.inl": "c",
"clock.h": "c",
"kstring.h": "c",
"logger.h": "c"
}
"logger.h": "c",
"stb_image.h": "c",
"vector": "c",
"xstring": "c",
"xutility": "c",
"iterator": "c",
"initializer_list": "c",
"loader_utils.h": "c",
"kmath.h": "c",
"random": "c",
"string_view": "c",
"limits": "c",
"sstream": "c",
"filesystem.h": "c",
"atomic": "c",
"*.tcc": "c",
"iomanip": "c",
"istream": "c",
"ostream": "c"
},
// File copyright documentation tag. Array of strings will be converted to one line per element. Can template {year}.
"doxdocgen.file.copyrightTag": [
"@copyright Kohi Game Engine is Copyright (c) Travis Vroman 2021-{year}"
],
"doxdocgen.file.versionTag": "@version 1.0",
"doxdocgen.generic.authorEmail": "[email protected]",
"doxdocgen.generic.authorName": "Travis Vroman",
"doxdocgen.generic.authorTag": "@author {author} ({email})",
// The order to use for the file comment. Values can be used multiple times. Valid values are shown in default setting.
"doxdocgen.file.fileOrder": [
"file",
"author",
"brief",
"version",
"date",
"empty",
"copyright",
"empty",
"custom"
],
}
6 changes: 6 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@
"linux": {
"command": "${workspaceFolder}/clean-all.sh",
},
"osx": {
"command": "${workspaceFolder}/clean-all-macos.sh",
},
"options": {
"cwd": "${workspaceFolder}"
},
Expand All @@ -107,6 +110,9 @@
"linux": {
"command": "${workspaceFolder}/post-build.sh",
},
"osx": {
"command": "${workspaceFolder}/post-build.sh",
},
"options": {
"cwd": "${workspaceFolder}"
},
Expand Down
Loading

0 comments on commit ca2bcab

Please sign in to comment.