summaryrefslogtreecommitdiff
path: root/tools/render-test/render-test.vcxproj.filters
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2018-05-03 18:42:13 -0400
committerTim Foley <tfoleyNV@users.noreply.github.com>2018-05-03 15:42:13 -0700
commitf8472940229e8582ec9f941069fc9576bd09b94c (patch)
tree9b387a65abc42094e7a1e0687b793cb0fc5c5eaa /tools/render-test/render-test.vcxproj.filters
parentc216f00f1eaff368229cb8430422972fcac801b7 (diff)
Added Surface type - as a simple value type to hold a 2d collection of pixels. (#548)
Added PngSerializeUtil allows currently for just writing Surface of RGBA format. Removes dependency on stbi_image except for in PngSerializeUtil. Removed use of gWindowWidth/Height globals - pass the height into initialize or Renderer.
Diffstat (limited to 'tools/render-test/render-test.vcxproj.filters')
-rw-r--r--tools/render-test/render-test.vcxproj.filters12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/render-test/render-test.vcxproj.filters b/tools/render-test/render-test.vcxproj.filters
index 2bbf03af2..a8453035b 100644
--- a/tools/render-test/render-test.vcxproj.filters
+++ b/tools/render-test/render-test.vcxproj.filters
@@ -72,6 +72,12 @@
<ClCompile Include="vk-util.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="surface.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="png-serialize-util.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="options.h">
@@ -131,5 +137,11 @@
<ClInclude Include="vk-util.h">
<Filter>Source Files</Filter>
</ClInclude>
+ <ClInclude Include="surface.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
+ <ClInclude Include="png-serialize-util.h">
+ <Filter>Source Files</Filter>
+ </ClInclude>
</ItemGroup>
</Project> \ No newline at end of file