mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-15 16:46:01 +08:00
DirectComposition bindings just landed.
Generate enums and structs in single file (for easier readability)
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
// ------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
// ------------------------------------------------------------------------------
|
||||
|
||||
namespace Win32.Graphics.Direct3D.Dxc;
|
||||
|
||||
/// <unmanaged>DxcShaderHash</unmanaged>
|
||||
public partial struct DxcShaderHash
|
||||
{
|
||||
public DxcHashFlags Flags;
|
||||
|
||||
public unsafe fixed byte HashDigest[16];
|
||||
}
|
||||
|
||||
/// <unmanaged>DxcBuffer</unmanaged>
|
||||
public partial struct DxcBuffer
|
||||
{
|
||||
public unsafe void* Ptr;
|
||||
|
||||
public nuint Size;
|
||||
|
||||
public uint Encoding;
|
||||
}
|
||||
|
||||
/// <unmanaged>DxcDefine</unmanaged>
|
||||
public partial struct DxcDefine
|
||||
{
|
||||
public unsafe ushort* Name;
|
||||
|
||||
public unsafe ushort* Value;
|
||||
}
|
||||
|
||||
/// <unmanaged>DxcArgPair</unmanaged>
|
||||
public partial struct DxcArgPair
|
||||
{
|
||||
public unsafe ushort* pName;
|
||||
|
||||
public unsafe ushort* pValue;
|
||||
}
|
||||
Reference in New Issue
Block a user