コード例 #1
0
 internal unsafe void MarshalTo(Interop.CommandBufferAllocateInfo *pointer)
 {
     pointer->SType = StructureType.CommandBufferAllocateInfo;
     pointer->Next  = null;
     this.CommandPool?.MarshalTo(&pointer->CommandPool);
     pointer->Level = this.Level;
     pointer->CommandBufferCount = this.CommandBufferCount;
 }
コード例 #2
0
ファイル: Structs.cs プロジェクト: yongweisun/VulkanSharp
 internal CommandBufferAllocateInfo(Interop.CommandBufferAllocateInfo* ptr)
 {
     m = ptr;
     Initialize ();
 }
コード例 #3
0
ファイル: Structs.cs プロジェクト: yongweisun/VulkanSharp
 public CommandBufferAllocateInfo()
 {
     m = (Interop.CommandBufferAllocateInfo*) Interop.Structure.Allocate (typeof (Interop.CommandBufferAllocateInfo));
     Initialize ();
 }