| 40 | } |
| 41 | |
| 42 | void NoteOutputQueue::QueueFlush(NoteOutput* target, double time) |
| 43 | { |
| 44 | PendingNoteOutput output; |
| 45 | output.target = target; |
| 46 | output.isFlush = true; |
| 47 | output.time = time; |
| 48 | mQueue.enqueue(output); |
| 49 | } |
| 50 | |
| 51 | void NoteOutputQueue::Process() |
| 52 | { |