protected static IList <RCQItem> GetCurrentlyQueuedItems() { return(ThreadLocalRCQ.GetCurrentQueue()); }
protected static void FlushRenderCommands() { ThreadLocalRCQ.Flush(); }
protected static void QueueAction(Action action) { Assure.NotNull(action); ThreadLocalRCQ.QueueAction(action); }
protected static void QueueRenderCommand(uint reservedCommandSlot, RenderCommand command) { ThreadLocalRCQ.QueueCommand(reservedCommandSlot, command); }
protected static uint ReserveCommandSlot() { return(ThreadLocalRCQ.ReserveCommandSlot()); }
protected static void QueueRenderCommand(RenderCommand command) { ThreadLocalRCQ.QueueCommand(command); }