Exemplo n.º 1
0
        public void Play(ALBuffer buffer, int channel)
        {
            ALSource source = sources[channel];

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