示例#1
0
        public void RemovePersistentDrawQueue(IDrawStage stage, IPersistentDrawQueue queue)
        {
            if (stage == null)
            {
                throw new Yak2DException("Unable to remove persistent draw queue, null draw stage provided");
            }

            if (queue == null)
            {
                throw new Yak2DException("Unable to remove persistent draw queue, null queue provided");
            }

            RemovePersistentDrawQueue(stage.Id, queue.Id);
        }
示例#2
0
 public void RemovePersistentQueue(IPersistentDrawQueue queue) => _queues.RemovePersistentQueue(queue.Id);