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:
@@ -532,9 +532,9 @@ public unsafe partial struct ID2D1DeviceContext4 : ID2D1DeviceContext4.Interface
|
||||
/// <inheritdoc cref="ID2D1DeviceContext.CreateColorContextFromFilename" />
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
[VtblIndex(60)]
|
||||
public HResult CreateColorContextFromFilename(ushort* filename, ID2D1ColorContext** colorContext)
|
||||
public HResult CreateColorContextFromFilename(char* filename, ID2D1ColorContext** colorContext)
|
||||
{
|
||||
return ((delegate* unmanaged[MemberFunction]<ID2D1DeviceContext4*, ushort*, ID2D1ColorContext**, int>)(lpVtbl[60]))((ID2D1DeviceContext4*)Unsafe.AsPointer(ref this), filename, colorContext);
|
||||
return ((delegate* unmanaged[MemberFunction]<ID2D1DeviceContext4*, char*, ID2D1ColorContext**, int>)(lpVtbl[60]))((ID2D1DeviceContext4*)Unsafe.AsPointer(ref this), filename, colorContext);
|
||||
}
|
||||
|
||||
/// <inheritdoc cref="ID2D1DeviceContext.CreateColorContextFromWicColorContext" />
|
||||
|
||||
Reference in New Issue
Block a user