summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2020-12-11 09:42:23 -0800
committerGitHub <noreply@github.com>2020-12-11 09:42:23 -0800
commit856d7d3705cedabcc2e9389a3f0ac730b0e33476 (patch)
tree3b04a7c67f9e4b4b4cc3bb4a0906815c62f7d7ee /build
parent992778e25c444932921ce92fe7934893b2aca35f (diff)
Implements CUDA renderer in gfx. (#1637)
* Implements CUDA renderer in gfx. * Revert unnecessary change. * Revert unnecessary changes. Co-authored-by: Tim Foley <tfoleyNV@users.noreply.github.com>
Diffstat (limited to 'build')
-rw-r--r--build/visual-studio/gfx/gfx.vcxproj2
-rw-r--r--build/visual-studio/gfx/gfx.vcxproj.filters6
2 files changed, 8 insertions, 0 deletions
diff --git a/build/visual-studio/gfx/gfx.vcxproj b/build/visual-studio/gfx/gfx.vcxproj
index d04ac9c2a..841a11c03 100644
--- a/build/visual-studio/gfx/gfx.vcxproj
+++ b/build/visual-studio/gfx/gfx.vcxproj
@@ -171,6 +171,7 @@
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
+ <ClInclude Include="..\..\..\tools\gfx\cuda\render-cuda.h" />
<ClInclude Include="..\..\..\tools\gfx\d3d\d3d-util.h" />
<ClInclude Include="..\..\..\tools\gfx\d3d11\render-d3d11.h" />
<ClInclude Include="..\..\..\tools\gfx\d3d12\circular-resource-heap-d3d12.h" />
@@ -197,6 +198,7 @@
<ClInclude Include="..\..\..\tools\gfx\window.h" />
</ItemGroup>
<ItemGroup>
+ <ClCompile Include="..\..\..\tools\gfx\cuda\render-cuda.cpp" />
<ClCompile Include="..\..\..\tools\gfx\d3d\d3d-util.cpp" />
<ClCompile Include="..\..\..\tools\gfx\d3d11\render-d3d11.cpp" />
<ClCompile Include="..\..\..\tools\gfx\d3d12\circular-resource-heap-d3d12.cpp" />
diff --git a/build/visual-studio/gfx/gfx.vcxproj.filters b/build/visual-studio/gfx/gfx.vcxproj.filters
index ada84b968..d55d0d4bb 100644
--- a/build/visual-studio/gfx/gfx.vcxproj.filters
+++ b/build/visual-studio/gfx/gfx.vcxproj.filters
@@ -9,6 +9,9 @@
</Filter>
</ItemGroup>
<ItemGroup>
+ <ClInclude Include="..\..\..\tools\gfx\cuda\render-cuda.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
<ClInclude Include="..\..\..\tools\gfx\d3d\d3d-util.h">
<Filter>Header Files</Filter>
</ClInclude>
@@ -83,6 +86,9 @@
</ClInclude>
</ItemGroup>
<ItemGroup>
+ <ClCompile Include="..\..\..\tools\gfx\cuda\render-cuda.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
<ClCompile Include="..\..\..\tools\gfx\d3d\d3d-util.cpp">
<Filter>Source Files</Filter>
</ClCompile>