/[svn]/linuxsampler/trunk/src/engines/gig/EngineChannel.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/gig/EngineChannel.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1847 by iliev, Fri Feb 27 17:12:40 2009 UTC revision 1924 by persson, Sun Jun 28 16:43:38 2009 UTC
# Line 736  namespace LinuxSampler { namespace gig { Line 736  namespace LinuxSampler { namespace gig {
736          }          }
737      }      }
738    
739        /**
740         *  Will be called by the MIDIIn Thread to signal that a program
741         *  change should be performed. As a program change isn't
742         *  real-time safe, the actual change is performed by the disk
743         *  thread.
744         *
745         *  @param Program     - MIDI program change number
746         */
747        void EngineChannel::SendProgramChange(uint8_t Program) {
748            if (pEngine) {
749                pEngine->pDiskThread->OrderProgramChange(Program, this);
750            }
751        }
752    
753      void EngineChannel::ClearEventLists() {      void EngineChannel::ClearEventLists() {
754          pEvents->clear();          pEvents->clear();
755          // empty MIDI key specific event lists          // empty MIDI key specific event lists

Legend:
Removed from v.1847  
changed lines
  Added in v.1924

  ViewVC Help
Powered by ViewVC