示例#1
0
        public void CmdResetQueryPool(IMgQueryPool queryPool, UInt32 firstQuery, UInt32 queryCount)
        {
            var bQueryPool = (VkQueryPool)queryPool;

            Debug.Assert(bQueryPool != null);

            Interops.vkCmdResetQueryPool(this.Handle, bQueryPool.Handle, firstQuery, queryCount);
        }