Ejemplo n.º 1
0
 internal unsafe void MarshalTo(Interop.PipelineInputAssemblyStateCreateInfo *pointer)
 {
     pointer->SType    = StructureType.PipelineInputAssemblyStateCreateInfo;
     pointer->Next     = null;
     pointer->Flags    = this.Flags;
     pointer->Topology = this.Topology;
     pointer->PrimitiveRestartEnable = this.PrimitiveRestartEnable;
 }
Ejemplo n.º 2
0
 internal PipelineInputAssemblyStateCreateInfo(Interop.PipelineInputAssemblyStateCreateInfo* ptr)
 {
     m = ptr;
     Initialize ();
 }
Ejemplo n.º 3
0
 public PipelineInputAssemblyStateCreateInfo()
 {
     m = (Interop.PipelineInputAssemblyStateCreateInfo*) Interop.Structure.Allocate (typeof (Interop.PipelineInputAssemblyStateCreateInfo));
     Initialize ();
 }