diff options
| author | lucy96chen <47800040+lucy96chen@users.noreply.github.com> | 2022-03-24 10:54:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-24 10:54:58 -0700 |
| commit | 79b81083b75dc0abdbb8184568dbe36d082e04f3 (patch) | |
| tree | 8bbfa00e3fb7e00e34a2b7441b562d337db24ced /build | |
| parent | b8617af2888db01f80efba9e0a103e6a61989c9c (diff) | |
Separated out new texture-related structures and texture data generation from texture copying tests into a new util file to make them accessible to all gfx unit tests (#2169)
Diffstat (limited to 'build')
| -rw-r--r-- | build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj | 2 | ||||
| -rw-r--r-- | build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj b/build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj index 181b5b15c..43bac5358 100644 --- a/build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj +++ b/build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj @@ -268,6 +268,7 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
+ <ClInclude Include="..\..\..\tools\gfx-unit-test\gfx-test-texture-util.h" />
<ClInclude Include="..\..\..\tools\gfx-unit-test\gfx-test-util.h" />
<ClInclude Include="..\..\..\tools\unit-test\slang-unit-test.h" />
</ItemGroup>
@@ -284,6 +285,7 @@ <ClCompile Include="..\..\..\tools\gfx-unit-test\get-cmd-queue-handle-test.cpp" />
<ClCompile Include="..\..\..\tools\gfx-unit-test\get-supported-resource-states-test.cpp" />
<ClCompile Include="..\..\..\tools\gfx-unit-test\get-texture-resource-handle-test.cpp" />
+ <ClCompile Include="..\..\..\tools\gfx-unit-test\gfx-test-texture-util.cpp" />
<ClCompile Include="..\..\..\tools\gfx-unit-test\gfx-test-util.cpp" />
<ClCompile Include="..\..\..\tools\gfx-unit-test\instanced-draw-tests.cpp" />
<ClCompile Include="..\..\..\tools\gfx-unit-test\mutable-shader-object.cpp" />
diff --git a/build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj.filters b/build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj.filters index eaa3820af..1fda831f1 100644 --- a/build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj.filters +++ b/build/visual-studio/gfx-unit-test-tool/gfx-unit-test-tool.vcxproj.filters @@ -15,6 +15,9 @@ <ClInclude Include="..\..\..\tools\unit-test\slang-unit-test.h">
<Filter>Header Files</Filter>
</ClInclude>
+ <ClInclude Include="..\..\..\tools\gfx-unit-test\gfx-test-texture-util.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\..\tools\gfx-unit-test\buffer-barrier-test.cpp">
@@ -86,6 +89,9 @@ <ClCompile Include="..\..\..\tools\unit-test\slang-unit-test.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\tools\gfx-unit-test\gfx-test-texture-util.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\tools\gfx-unit-test\buffer-barrier-test.slang">
|
