Searched refs:synth_num (Results 1 – 1 of 1) sorted by relevance
/external/sonivox/jet_tools/JetCreator/ |
D | eas.py | 834 def SetPolyphony (self, polyphony, synth_num=0): argument 836 …eas_logger.debug('Call EAS_SetSynthPolyphony: synth_num=%d, polyphony=%d' % (synth_num, polyphony)) 838 result = eas_dll.EAS_SetSynthPolyphony(self.handle, synth_num, polyphony) 840 …raise EAS_Exception(result, 'EAS_SetSynthPolyphony error %d on synth %d' % (result, synth_num), 'E… 842 def GetPolyphony (self, synth_num=0): argument 844 eas_logger.debug('Call EAS_GetSynthPolyphony: synth_num=%d' % synth_num) 847 result = eas_dll.EAS_GetSynthPolyphony(self.handle, synth_num, byref(polyphony)) 849 …raise EAS_Exception(result, 'EAS_GetSynthPolyphony error %d on synth %d' % (result, synth_num), 'E… 850 …eas_logger.debug('Call EAS_GetSynthPolyphony: synth_num=%d, polyphony=%d' % (synth_num, polyphony.…
|