Skip to content

Commit

Permalink
Falcor 5.2 (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
skallweitNV authored Aug 17, 2022
1 parent 056f7b7 commit 900a50b
Show file tree
Hide file tree
Showing 1,185 changed files with 31,897 additions and 22,474 deletions.
11 changes: 2 additions & 9 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,16 @@
root = false

# Set default editor config for all files:
# - use utf-8 as default
# - 4 spaces, no trailing whitespaces
# - final newline for slightly cleaner diffs when changing the last line
# - native end-of-line in case we want to open a file elsewhere, git converts to LF for non-Windows
# - use utf-8 as default
[*]
charset = utf-8
indent_size = 4
indent_style = space
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = crlf
charset = utf-8

# Override trailing whitespace setting for Markdown since there it's actually useful
[*.{md}]
trim_trailing_whitespace = false

# Override settings for project files to use the same settings as Visual Studio
[*.{vcxproj,vcxproj.filters}]
indent_size = 2
insert_final_newline = false
2 changes: 2 additions & 0 deletions .gitattributes
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
31 changes: 19 additions & 12 deletions .gitignore
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
21 changes: 21 additions & 0 deletions .gitmodules
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
9 changes: 9 additions & 0 deletions .vscode-default/extensions.json
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"
]
}
67 changes: 67 additions & 0 deletions .vscode-default/launch.json
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"
}
]
}
6 changes: 6 additions & 0 deletions .vscode-default/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"files.associations": {
"*.pyscene": "python"
},
"cmake.configureOnEdit": false
}
7 changes: 0 additions & 7 deletions Build/deployproject.bat

This file was deleted.

41 changes: 0 additions & 41 deletions Build/patchpropssheet.py

This file was deleted.

54 changes: 0 additions & 54 deletions Build/prebuild.bat

This file was deleted.

10 changes: 0 additions & 10 deletions Build/update_dependencies.bat

This file was deleted.

8 changes: 0 additions & 8 deletions Build/update_dependencies.sh

This file was deleted.

Loading

0 comments on commit 900a50b

Please sign in to comment.