diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2019-01-07 09:14:01 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-07 09:14:01 -0500 |
| commit | d155eaa92d56a4ec00109d25c8c70fe12fb96c2e (patch) | |
| tree | 55355d0aa67f99727f520ee3b210c27a647a12a9 /tools/render-test | |
| parent | efa2c8f41aa5cd2c27990fd9b57ea0eff06976e7 (diff) | |
Feature/unique tool source names (#766)
* Remove AppContext. Use StdChannels to hold writers, and TestToolUtil to hold test tool specific functionality.
* StdChannels -> StdWriters
* getStdOut -> getOut, getStdError -> getError
* Renamed main.cpp files of tools to try and stop visual studio getting confused between files - such that clicking on an error takes editor to the right location.
Diffstat (limited to 'tools/render-test')
| -rw-r--r-- | tools/render-test/render-test-main.cpp (renamed from tools/render-test/main.cpp) | 2 | ||||
| -rw-r--r-- | tools/render-test/render-test-tool.vcxproj | 2 | ||||
| -rw-r--r-- | tools/render-test/render-test-tool.vcxproj.filters | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tools/render-test/main.cpp b/tools/render-test/render-test-main.cpp index 69874ac04..7cf303631 100644 --- a/tools/render-test/main.cpp +++ b/tools/render-test/render-test-main.cpp @@ -1,4 +1,4 @@ -// main.cpp +// render-test-main.cpp #include "options.h" #include "render.h" diff --git a/tools/render-test/render-test-tool.vcxproj b/tools/render-test/render-test-tool.vcxproj index 811ffa56d..dea8627e3 100644 --- a/tools/render-test/render-test-tool.vcxproj +++ b/tools/render-test/render-test-tool.vcxproj @@ -186,9 +186,9 @@ <ClInclude Include="slang-support.h" /> </ItemGroup> <ItemGroup> - <ClCompile Include="main.cpp" /> <ClCompile Include="options.cpp" /> <ClCompile Include="png-serialize-util.cpp" /> + <ClCompile Include="render-test-main.cpp" /> <ClCompile Include="shader-input-layout.cpp" /> <ClCompile Include="shader-renderer-util.cpp" /> <ClCompile Include="slang-support.cpp" /> diff --git a/tools/render-test/render-test-tool.vcxproj.filters b/tools/render-test/render-test-tool.vcxproj.filters index ff3d52a7e..39197c7e9 100644 --- a/tools/render-test/render-test-tool.vcxproj.filters +++ b/tools/render-test/render-test-tool.vcxproj.filters @@ -26,15 +26,15 @@ </ClInclude> </ItemGroup> <ItemGroup> - <ClCompile Include="main.cpp"> - <Filter>Source Files</Filter> - </ClCompile> <ClCompile Include="options.cpp"> <Filter>Source Files</Filter> </ClCompile> <ClCompile Include="png-serialize-util.cpp"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="render-test-main.cpp"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="shader-input-layout.cpp"> <Filter>Source Files</Filter> </ClCompile> |
