示例#1
0
        public void Play(ALBuffer buffer, int channel)
        {
            ALSource source = sources[channel];

            source.Queue(buffer);
            source.Play();
        }
示例#2
0
 public static void alGetSourceiv(uint source, ALSource param, int[] value) => _alGetSourceiv(source, (int)param, value);
示例#3
0
 public static void alGetSourcefv(uint source, ALSource param, float[] vals) => _alGetSourcefv(source, (int)param, vals);