Ejemplo n.º 1
0
 protected static IList <RCQItem> GetCurrentlyQueuedItems()
 {
     return(ThreadLocalRCQ.GetCurrentQueue());
 }
Ejemplo n.º 2
0
 protected static void FlushRenderCommands()
 {
     ThreadLocalRCQ.Flush();
 }
Ejemplo n.º 3
0
 protected static void QueueAction(Action action)
 {
     Assure.NotNull(action);
     ThreadLocalRCQ.QueueAction(action);
 }
Ejemplo n.º 4
0
 protected static void QueueRenderCommand(uint reservedCommandSlot, RenderCommand command)
 {
     ThreadLocalRCQ.QueueCommand(reservedCommandSlot, command);
 }
Ejemplo n.º 5
0
 protected static uint ReserveCommandSlot()
 {
     return(ThreadLocalRCQ.ReserveCommandSlot());
 }
Ejemplo n.º 6
0
 protected static void QueueRenderCommand(RenderCommand command)
 {
     ThreadLocalRCQ.QueueCommand(command);
 }