diff options
| author | Yong He <yonghe@outlook.com> | 2021-03-04 16:25:58 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-04 16:25:58 -0800 |
| commit | a5ac4999b4dea546a7ef824669ab1809224b6448 (patch) | |
| tree | 15bb22eb98a94f7f81489deef55396461501d3dc /build/visual-studio/render-test-tool | |
| parent | 13ff0bd345990c0fdfb7b52ebd5339cddb04889e (diff) | |
Refactor `gfx` to surface `CommandBuffer` interface. (#1735)
* Refactor `gfx` to surface `CommandBuffer` interface.
* Fixes.
* Fix code review issues, and make vulkan runnable on devices without VK_EXT_extended_dynamic_states.
* Update solution files
* Move out-of-date examples to examples/experimental
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'build/visual-studio/render-test-tool')
| -rw-r--r-- | build/visual-studio/render-test-tool/render-test-tool.vcxproj | 5 | ||||
| -rw-r--r-- | build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters | 15 |
2 files changed, 0 insertions, 20 deletions
diff --git a/build/visual-studio/render-test-tool/render-test-tool.vcxproj b/build/visual-studio/render-test-tool/render-test-tool.vcxproj index e74392972..0ce5b5361 100644 --- a/build/visual-studio/render-test-tool/render-test-tool.vcxproj +++ b/build/visual-studio/render-test-tool/render-test-tool.vcxproj @@ -186,8 +186,6 @@ <ClInclude Include="..\..\..\tools\render-test\shader-input-layout.h" /> <ClInclude Include="..\..\..\tools\render-test\shader-renderer-util.h" /> <ClInclude Include="..\..\..\tools\render-test\slang-support.h" /> - <ClInclude Include="..\..\..\tools\render-test\surface.h" /> - <ClInclude Include="..\..\..\tools\render-test\window.h" /> </ItemGroup> <ItemGroup> <ClCompile Include="..\..\..\tools\render-test\bind-location.cpp" /> @@ -198,9 +196,6 @@ <ClCompile Include="..\..\..\tools\render-test\shader-input-layout.cpp" /> <ClCompile Include="..\..\..\tools\render-test\shader-renderer-util.cpp" /> <ClCompile Include="..\..\..\tools\render-test\slang-support.cpp" /> - <ClCompile Include="..\..\..\tools\render-test\surface.cpp" /> - <ClCompile Include="..\..\..\tools\render-test\window.cpp" /> - <ClCompile Include="..\..\..\tools\render-test\windows\win-window.cpp" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\core\core.vcxproj"> diff --git a/build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters b/build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters index 5223edb08..cfbfa390e 100644 --- a/build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters +++ b/build/visual-studio/render-test-tool/render-test-tool.vcxproj.filters @@ -30,12 +30,6 @@ <ClInclude Include="..\..\..\tools\render-test\slang-support.h"> <Filter>Header Files</Filter> </ClInclude> - <ClInclude Include="..\..\..\tools\render-test\surface.h"> - <Filter>Header Files</Filter> - </ClInclude> - <ClInclude Include="..\..\..\tools\render-test\window.h"> - <Filter>Header Files</Filter> - </ClInclude> </ItemGroup> <ItemGroup> <ClCompile Include="..\..\..\tools\render-test\bind-location.cpp"> @@ -62,14 +56,5 @@ <ClCompile Include="..\..\..\tools\render-test\slang-support.cpp"> <Filter>Source Files</Filter> </ClCompile> - <ClCompile Include="..\..\..\tools\render-test\surface.cpp"> - <Filter>Source Files</Filter> - </ClCompile> - <ClCompile Include="..\..\..\tools\render-test\window.cpp"> - <Filter>Source Files</Filter> - </ClCompile> - <ClCompile Include="..\..\..\tools\render-test\windows\win-window.cpp"> - <Filter>Source Files</Filter> - </ClCompile> </ItemGroup> </Project>
\ No newline at end of file |
