mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-14 16:16:04 +08:00
Update DXC to July 2024 release (https://github.com/microsoft/DirectXShaderCompiler/releases/tag/v1.8.2407), bump version to 1.0.2
This commit is contained in:
@@ -829,6 +829,7 @@ public static class Program
|
||||
"VideoProcessorGetStreamColorSpace",
|
||||
"VideoProcessorGetStreamFrameFormat",
|
||||
"VideoProcessorSetStreamColorSpace",
|
||||
"TriangleFan",
|
||||
};
|
||||
|
||||
private static readonly HashSet<string> s_preserveCaps = new(StringComparer.OrdinalIgnoreCase)
|
||||
|
||||
@@ -3,18 +3,19 @@
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netstandard2.0;net4.6.1;net8.0</TargetFrameworks>
|
||||
<Description>Dxc native libraries</Description>
|
||||
<PackageVersion>1.0.1</PackageVersion>
|
||||
<PackageVersion>1.0.2</PackageVersion>
|
||||
<IncludeBuildOutput>false</IncludeBuildOutput>
|
||||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||
<PackageLicenseExpression></PackageLicenseExpression>
|
||||
<PackageLicenseFile>LICENSE-MS.txt</PackageLicenseFile>
|
||||
<RepositoryUrl>https://github.com/microsoft/DirectXShaderCompiler</RepositoryUrl>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
<IncludeSymbols>false</IncludeSymbols>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="$(RepoRootDirectory)/README.md" Pack="true" PackagePath="\" />
|
||||
<Content Include="LICENCE-MIT.txt" PackagePath="" />
|
||||
<Content Include="LICENSE-MIT.txt" PackagePath="" />
|
||||
<Content Include="LICENSE-LLVM.txt" PackagePath="" />
|
||||
<Content Include="LICENSE-MS.txt" PackagePath="" />
|
||||
</ItemGroup>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -281,7 +281,7 @@ public static partial class Apis
|
||||
public const PrimitiveTopology D3D_PRIMITIVE_TOPOLOGY_LINESTRIP = PrimitiveTopology.LineStrip;
|
||||
public const PrimitiveTopology D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST = PrimitiveTopology.TriangleList;
|
||||
public const PrimitiveTopology D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP = PrimitiveTopology.TriangleStrip;
|
||||
public const PrimitiveTopology D3D_PRIMITIVE_TOPOLOGY_TRIANGLEFAN = PrimitiveTopology.Trianglefan;
|
||||
public const PrimitiveTopology D3D_PRIMITIVE_TOPOLOGY_TRIANGLEFAN = PrimitiveTopology.TriangleFan;
|
||||
public const PrimitiveTopology D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ = PrimitiveTopology.LineListAdj;
|
||||
public const PrimitiveTopology D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ = PrimitiveTopology.LineStripAdj;
|
||||
public const PrimitiveTopology D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ = PrimitiveTopology.TriangleListAdj;
|
||||
|
||||
@@ -99,7 +99,7 @@ public enum PrimitiveTopology
|
||||
TriangleStrip = 5,
|
||||
/// <include file='../Direct3D.xml' path='doc/member[@name="D3D_PRIMITIVE_TOPOLOGY::D3D_PRIMITIVE_TOPOLOGY_TRIANGLEFAN"]/*' />
|
||||
/// <unmanaged>D3D_PRIMITIVE_TOPOLOGY_TRIANGLEFAN</unmanaged>
|
||||
Trianglefan = 6,
|
||||
TriangleFan = 6,
|
||||
/// <include file='../Direct3D.xml' path='doc/member[@name="D3D_PRIMITIVE_TOPOLOGY::D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ"]/*' />
|
||||
/// <unmanaged>D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ</unmanaged>
|
||||
LineListAdj = 10,
|
||||
|
||||
Reference in New Issue
Block a user