mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-14 08:06:02 +08:00
Update bindings to use char* instead of ushort*, separated Dxc native packages to Vortice.Dxc.Native, bump version to 2.2.1
This commit is contained in:
@@ -97,9 +97,9 @@ public unsafe partial struct ID3D12CommandList : ID3D12CommandList.Interface, IN
|
||||
/// <inheritdoc cref="ID3D12Object.SetName" />
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
[VtblIndex(6)]
|
||||
public HResult SetName(ushort* Name)
|
||||
public HResult SetName(char* Name)
|
||||
{
|
||||
return ((delegate* unmanaged[MemberFunction]<ID3D12CommandList*, ushort*, int>)(lpVtbl[6]))((ID3D12CommandList*)Unsafe.AsPointer(ref this), Name);
|
||||
return ((delegate* unmanaged[MemberFunction]<ID3D12CommandList*, char*, int>)(lpVtbl[6]))((ID3D12CommandList*)Unsafe.AsPointer(ref this), Name);
|
||||
}
|
||||
|
||||
/// <inheritdoc cref="ID3D12DeviceChild.GetDevice" />
|
||||
|
||||
Reference in New Issue
Block a user