From 3f1632a1450a5879f337b4bd178e48880cd583f8 Mon Sep 17 00:00:00 2001 From: Yong He Date: Wed, 31 Mar 2021 11:35:17 -0700 Subject: `gfx` explicit transient resource management. (#1774) --- .../cpu-hello-world/cpu-hello-world.vcxproj | 9 +- .../example-base/example-base.vcxproj | 186 +++++++++++++++++++++ .../example-base/example-base.vcxproj.filters | 21 +++ build/visual-studio/gfx/gfx.vcxproj | 3 +- build/visual-studio/gfx/gfx.vcxproj.filters | 9 +- .../gpu-printing/gpu-printing.vcxproj | 9 +- .../visual-studio/hello-world/hello-world.vcxproj | 9 +- .../shader-object/shader-object.vcxproj | 9 +- build/visual-studio/shader-toy/shader-toy.vcxproj | 9 +- 9 files changed, 241 insertions(+), 23 deletions(-) create mode 100644 build/visual-studio/example-base/example-base.vcxproj create mode 100644 build/visual-studio/example-base/example-base.vcxproj.filters (limited to 'build/visual-studio') diff --git a/build/visual-studio/cpu-hello-world/cpu-hello-world.vcxproj b/build/visual-studio/cpu-hello-world/cpu-hello-world.vcxproj index 0ba5973d0..9b21c1410 100644 --- a/build/visual-studio/cpu-hello-world/cpu-hello-world.vcxproj +++ b/build/visual-studio/cpu-hello-world/cpu-hello-world.vcxproj @@ -168,12 +168,12 @@ + + {37BED5B5-23FA-D81F-8C0C-F1167867813A} + {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} - - {F9BE7957-8399-899E-0C49-E714FDDD4B65} - {222F7498-B40C-4F3F-A704-DDEB91A4484A} @@ -183,6 +183,9 @@ {3565FE5E-4FA3-11EB-AE93-0242AC130002} + + {F9BE7957-8399-899E-0C49-E714FDDD4B65} + diff --git a/build/visual-studio/example-base/example-base.vcxproj b/build/visual-studio/example-base/example-base.vcxproj new file mode 100644 index 000000000..794e0b114 --- /dev/null +++ b/build/visual-studio/example-base/example-base.vcxproj @@ -0,0 +1,186 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {37BED5B5-23FA-D81F-8C0C-F1167867813A} + true + Win32Proj + example-base + + + + StaticLibrary + true + Unicode + v140 + + + StaticLibrary + true + Unicode + v140 + + + StaticLibrary + false + Unicode + v140 + + + StaticLibrary + false + Unicode + v140 + + + + + + + + + + + + + + + + + + + ..\..\..\bin\windows-x86\debug\ + ..\..\..\intermediate\windows-x86\debug\example-base\ + example-base + .lib + + + ..\..\..\bin\windows-x64\debug\ + ..\..\..\intermediate\windows-x64\debug\example-base\ + example-base + .lib + + + ..\..\..\bin\windows-x86\release\ + ..\..\..\intermediate\windows-x86\release\example-base\ + example-base + .lib + + + ..\..\..\bin\windows-x64\release\ + ..\..\..\intermediate\windows-x64\release\example-base\ + example-base + .lib + + + + NotUsing + Level3 + _DEBUG;%(PreprocessorDefinitions) + ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + EditAndContinue + Disabled + MultiThreadedDebug + + + Windows + true + + + + + NotUsing + Level3 + _DEBUG;%(PreprocessorDefinitions) + ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + EditAndContinue + Disabled + MultiThreadedDebug + + + Windows + true + + + + + NotUsing + Level3 + NDEBUG;%(PreprocessorDefinitions) + ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + Full + true + true + false + true + MultiThreaded + + + Windows + true + true + + + + + NotUsing + Level3 + NDEBUG;%(PreprocessorDefinitions) + ..\..\..;..\..\..\tools;%(AdditionalIncludeDirectories) + Full + true + true + false + true + MultiThreaded + + + Windows + true + true + + + + + + + + + + + {222F7498-B40C-4F3F-A704-DDEB91A4484A} + + + {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} + + + {3565FE5E-4FA3-11EB-AE93-0242AC130002} + + + {F5ADB74E-02A7-44FB-AA3B-FC02F8AC7A4B} + + + {F9BE7957-8399-899E-0C49-E714FDDD4B65} + + + + + + \ No newline at end of file diff --git a/build/visual-studio/example-base/example-base.vcxproj.filters b/build/visual-studio/example-base/example-base.vcxproj.filters new file mode 100644 index 000000000..dc6cf4236 --- /dev/null +++ b/build/visual-studio/example-base/example-base.vcxproj.filters @@ -0,0 +1,21 @@ + + + + + {21EB8090-0D4E-1035-B6D3-48EBA215DCB7} + + + {E9C7FDCE-D52A-8D73-7EB0-C5296AF258F6} + + + + + Header Files + + + + + Source Files + + + \ No newline at end of file diff --git a/build/visual-studio/gfx/gfx.vcxproj b/build/visual-studio/gfx/gfx.vcxproj index 01faf88bd..e24e09e07 100644 --- a/build/visual-studio/gfx/gfx.vcxproj +++ b/build/visual-studio/gfx/gfx.vcxproj @@ -186,7 +186,6 @@ - @@ -197,6 +196,7 @@ + @@ -211,7 +211,6 @@ - diff --git a/build/visual-studio/gfx/gfx.vcxproj.filters b/build/visual-studio/gfx/gfx.vcxproj.filters index 99af1fbbd..fa859d6ac 100644 --- a/build/visual-studio/gfx/gfx.vcxproj.filters +++ b/build/visual-studio/gfx/gfx.vcxproj.filters @@ -30,9 +30,6 @@ Header Files - - Header Files - Header Files @@ -63,6 +60,9 @@ Header Files + + Header Files + Header Files @@ -101,9 +101,6 @@ Source Files - - Source Files - Source Files diff --git a/build/visual-studio/gpu-printing/gpu-printing.vcxproj b/build/visual-studio/gpu-printing/gpu-printing.vcxproj index b55e289d1..4ab526230 100644 --- a/build/visual-studio/gpu-printing/gpu-printing.vcxproj +++ b/build/visual-studio/gpu-printing/gpu-printing.vcxproj @@ -174,12 +174,12 @@ + + {37BED5B5-23FA-D81F-8C0C-F1167867813A} + {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} - - {F9BE7957-8399-899E-0C49-E714FDDD4B65} - {222F7498-B40C-4F3F-A704-DDEB91A4484A} @@ -189,6 +189,9 @@ {3565FE5E-4FA3-11EB-AE93-0242AC130002} + + {F9BE7957-8399-899E-0C49-E714FDDD4B65} + diff --git a/build/visual-studio/hello-world/hello-world.vcxproj b/build/visual-studio/hello-world/hello-world.vcxproj index 28f8d1425..7164fd9e6 100644 --- a/build/visual-studio/hello-world/hello-world.vcxproj +++ b/build/visual-studio/hello-world/hello-world.vcxproj @@ -168,12 +168,12 @@ + + {37BED5B5-23FA-D81F-8C0C-F1167867813A} + {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} - - {F9BE7957-8399-899E-0C49-E714FDDD4B65} - {222F7498-B40C-4F3F-A704-DDEB91A4484A} @@ -183,6 +183,9 @@ {3565FE5E-4FA3-11EB-AE93-0242AC130002} + + {F9BE7957-8399-899E-0C49-E714FDDD4B65} + diff --git a/build/visual-studio/shader-object/shader-object.vcxproj b/build/visual-studio/shader-object/shader-object.vcxproj index 04315f910..a65b7e544 100644 --- a/build/visual-studio/shader-object/shader-object.vcxproj +++ b/build/visual-studio/shader-object/shader-object.vcxproj @@ -168,12 +168,12 @@ + + {37BED5B5-23FA-D81F-8C0C-F1167867813A} + {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} - - {F9BE7957-8399-899E-0C49-E714FDDD4B65} - {222F7498-B40C-4F3F-A704-DDEB91A4484A} @@ -183,6 +183,9 @@ {3565FE5E-4FA3-11EB-AE93-0242AC130002} + + {F9BE7957-8399-899E-0C49-E714FDDD4B65} + diff --git a/build/visual-studio/shader-toy/shader-toy.vcxproj b/build/visual-studio/shader-toy/shader-toy.vcxproj index 823841a46..d1aad7d70 100644 --- a/build/visual-studio/shader-toy/shader-toy.vcxproj +++ b/build/visual-studio/shader-toy/shader-toy.vcxproj @@ -169,12 +169,12 @@ + + {37BED5B5-23FA-D81F-8C0C-F1167867813A} + {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} - - {F9BE7957-8399-899E-0C49-E714FDDD4B65} - {222F7498-B40C-4F3F-A704-DDEB91A4484A} @@ -184,6 +184,9 @@ {3565FE5E-4FA3-11EB-AE93-0242AC130002} + + {F9BE7957-8399-899E-0C49-E714FDDD4B65} + -- cgit v1.2.3