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