internal unsafe void MarshalTo(Interop.CommandBufferBeginInfo *pointer)
 {
     pointer->SType           = StructureType.CommandBufferBeginInfo;
     pointer->Next            = null;
     pointer->InheritanceInfo = this.InheritanceInfo == null ? null : this.InheritanceInfo.Value.MarshalTo();
     pointer->Flags           = this.Flags;
 }
Beispiel #2
0
 internal CommandBufferBeginInfo(Interop.CommandBufferBeginInfo* ptr)
 {
     m = ptr;
     Initialize ();
 }
Beispiel #3
0
 public CommandBufferBeginInfo()
 {
     m = (Interop.CommandBufferBeginInfo*) Interop.Structure.Allocate (typeof (Interop.CommandBufferBeginInfo));
     Initialize ();
 }