Ejemplo n.º 1
0
 internal unsafe void MarshalTo(Interop.BufferViewCreateInfo *pointer)
 {
     pointer->SType = StructureType.BufferViewCreateInfo;
     pointer->Next  = null;
     this.Buffer?.MarshalTo(&pointer->Buffer);
     pointer->Flags  = this.Flags;
     pointer->Format = this.Format;
     pointer->Offset = this.Offset;
     pointer->Range  = this.Range;
 }
Ejemplo n.º 2
0
 internal BufferViewCreateInfo(Interop.BufferViewCreateInfo* ptr)
 {
     m = ptr;
     Initialize ();
 }
Ejemplo n.º 3
0
 public BufferViewCreateInfo()
 {
     m = (Interop.BufferViewCreateInfo*) Interop.Structure.Allocate (typeof (Interop.BufferViewCreateInfo));
     Initialize ();
 }