コード例 #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);
        }