示例#1
0
 public void Dispose()
 {
     MemUtil.Free((IntPtr)NativePointer);
     NativePointer = null;
     GC.SuppressFinalize(this);
 }
示例#2
0
 public SamplerCreateInfo()
 {
     NativePointer        = (Unmanaged.SamplerCreateInfo *)MemUtil.Alloc(typeof(Unmanaged.SamplerCreateInfo));
     NativePointer->SType = StructureType.SamplerCreateInfo;
 }