diff options
| author | Yong He <yonghe@outlook.com> | 2020-08-18 13:08:45 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-18 13:08:45 -0700 |
| commit | b820f34a1b6336af184458c5b1dfe2273c99f1ff (patch) | |
| tree | ca9986891127cfe07eda18bfbdb5094eef5677cc /source/slang/slang.vcxproj | |
| parent | 9abcb6ea24dbc7184c3a2ad9f4458f63f8901928 (diff) | |
Support initializing an existential value from a generic value. (#1503)
* Support initializing an existential value from a generic value.
* Remove trailing spaces and clean up debugging code.
Diffstat (limited to 'source/slang/slang.vcxproj')
| -rw-r--r-- | source/slang/slang.vcxproj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/slang/slang.vcxproj b/source/slang/slang.vcxproj index 82e575ef9..563014c5b 100644 --- a/source/slang/slang.vcxproj +++ b/source/slang/slang.vcxproj @@ -223,6 +223,7 @@ <ClInclude Include="slang-image-format-defs.h" /> <ClInclude Include="slang-include-system.h" /> <ClInclude Include="slang-ir-any-value-marshalling.h" /> + <ClInclude Include="slang-ir-augment-make-existential.h" /> <ClInclude Include="slang-ir-bind-existentials.h" /> <ClInclude Include="slang-ir-byte-address-legalize.h" /> <ClInclude Include="slang-ir-clone.h" /> @@ -236,6 +237,7 @@ <ClInclude Include="slang-ir-explicit-global-init.h" /> <ClInclude Include="slang-ir-generics-lowering-context.h" /> <ClInclude Include="slang-ir-glsl-legalize.h" /> + <ClInclude Include="slang-ir-hoist-local-types.h" /> <ClInclude Include="slang-ir-inline.h" /> <ClInclude Include="slang-ir-inst-defs.h" /> <ClInclude Include="slang-ir-insts.h" /> @@ -329,6 +331,7 @@ <ClCompile Include="slang-hlsl-intrinsic-set.cpp" /> <ClCompile Include="slang-include-system.cpp" /> <ClCompile Include="slang-ir-any-value-marshalling.cpp" /> + <ClCompile Include="slang-ir-augment-make-existential.cpp" /> <ClCompile Include="slang-ir-bind-existentials.cpp" /> <ClCompile Include="slang-ir-byte-address-legalize.cpp" /> <ClCompile Include="slang-ir-clone.cpp" /> @@ -343,6 +346,7 @@ <ClCompile Include="slang-ir-explicit-global-init.cpp" /> <ClCompile Include="slang-ir-generics-lowering-context.cpp" /> <ClCompile Include="slang-ir-glsl-legalize.cpp" /> + <ClCompile Include="slang-ir-hoist-local-types.cpp" /> <ClCompile Include="slang-ir-inline.cpp" /> <ClCompile Include="slang-ir-layout.cpp" /> <ClCompile Include="slang-ir-legalize-types.cpp" /> @@ -413,4 +417,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project>
\ No newline at end of file +</Project>
\ No newline at end of file |
