-
Notifications
You must be signed in to change notification settings - Fork 502
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
056f7b7
commit 900a50b
Showing
1,185 changed files
with
31,897 additions
and
22,474 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
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,2 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto |
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 |
---|---|---|
@@ -1,21 +1,28 @@ | ||
Bin/* | ||
# Build folder. | ||
/build/ | ||
|
||
# Test output folder. | ||
/tests/data/ | ||
|
||
# Media folder. | ||
/media | ||
|
||
# Packman folders. | ||
/external/packman/ | ||
/tools/.packman/ | ||
|
||
# IDE folders. | ||
/.vs/ | ||
/.vscode/ | ||
|
||
# File types. | ||
*.user | ||
*.sdf | ||
*.opensdf | ||
*.suo | ||
*.ptx | ||
*.pyc | ||
*.VC.db | ||
*.VC.opendb | ||
.vs/* | ||
.vscode/ | ||
*.pyc | ||
*.o | ||
*slang-dump-* | ||
*.mp4 | ||
Source/Externals/.packman/* | ||
Media | ||
Tools/.packman | ||
Tests/data | ||
*.tlog | ||
/Source/Falcor/dependencies.user.xml | ||
*.bak |
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,21 @@ | ||
[submodule "external/pybind11"] | ||
path = external/pybind11 | ||
url = https://github.com/skallweitNV/pybind11.git | ||
[submodule "external/glfw"] | ||
path = external/glfw | ||
url = https://github.com/glfw/glfw.git | ||
[submodule "external/args"] | ||
path = external/args | ||
url = https://github.com/Taywee/args.git | ||
[submodule "external/fmt"] | ||
path = external/fmt | ||
url = https://github.com/fmtlib/fmt.git | ||
[submodule "external/imgui"] | ||
path = external/imgui | ||
url = https://github.com/ocornut/imgui.git | ||
[submodule "external/glm"] | ||
path = external/glm | ||
url = https://github.com/g-truc/glm.git | ||
[submodule "external/tiny-cuda-nn"] | ||
path = external/tiny-cuda-nn | ||
url = https://gitlab-master.nvidia.com/tmueller/tiny-cuda-nn.git |
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 @@ | ||
{ | ||
"recommendations": [ | ||
"editorconfig.editorconfig", | ||
"ms-vscode.cpptools", | ||
"ms-vscode.cmake-tools", | ||
"josetr.cmake-language-support-vscode", | ||
"shader-slang.slang-language-extension" | ||
] | ||
} |
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,67 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
// | ||
// Note: These launch configurations rely on the ms-vscode.cmake-tools extension | ||
// to provide ${command:cmake.launchTargetPath} and ${command:cmake.launchTargetDirectory}. | ||
// | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
// Launch configuration for currently selected target. | ||
"name": "Selected CMake Target", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${command:cmake.launchTargetPath}", | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${command:cmake.launchTargetDirectory}", | ||
"environment": [ | ||
{ | ||
"name": "FALCOR_DEVMODE", | ||
"value": "1" | ||
} | ||
], | ||
"visualizerFile": "${workspaceFolder}/Source/Falcor/Falcor.natvis" | ||
}, | ||
{ | ||
// Launch configuration for Mogwai. | ||
"name": "Mogwai", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"windows": { | ||
"program": "${command:cmake.launchTargetDirectory}/Mogwai.exe" | ||
}, | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${command:cmake.launchTargetDirectory}", | ||
"environment": [ | ||
{ | ||
"name": "FALCOR_DEVMODE", | ||
"value": "1" | ||
} | ||
], | ||
"visualizerFile": "${workspaceFolder}/Source/Falcor/Falcor.natvis" | ||
}, | ||
{ | ||
// Launch configuration for FalcorTest. | ||
"name": "FalcorTest", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"windows": { | ||
"program": "${command:cmake.launchTargetDirectory}/FalcorTest.exe" | ||
}, | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${command:cmake.launchTargetDirectory}", | ||
"environment": [ | ||
{ | ||
"name": "FALCOR_DEVMODE", | ||
"value": "1" | ||
} | ||
], | ||
"visualizerFile": "${workspaceFolder}/Source/Falcor/Falcor.natvis" | ||
} | ||
] | ||
} |
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,6 @@ | ||
{ | ||
"files.associations": { | ||
"*.pyscene": "python" | ||
}, | ||
"cmake.configureOnEdit": false | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.