Esempio n. 1
0
        public void CmdBeginQuery(IMgQueryPool queryPool, UInt32 query, MgQueryControlFlagBits flags)
        {
            var bQueryPool = (VkQueryPool)queryPool;

            Debug.Assert(bQueryPool != null);

            Interops.vkCmdBeginQuery(this.Handle, bQueryPool.Handle, query, (Magnesium.Vulkan.VkQueryControlFlags)flags);
        }
Esempio n. 2
0
 public void CmdBeginQuery(IMgQueryPool queryPool, uint query, MgQueryControlFlagBits flags)
 {
     throw new NotImplementedException();
 }