Example #1
0
        internal static void SetPropertyF(uint sourceID, FloatSourceProperty property, float value)
        {
            OpenAL.DebugFormat("Setting source {0} property {1} to {2}", sourceID, property, value);

            alSourcef(sourceID, property, value);
            OpenAL.ErrorCheck();
        }
Example #2
0
        // ReSharper restore InconsistentNaming

        internal static float GetPropertyF(uint sourceID, FloatSourceProperty property)
        {
            float value;

            alGetSourcef(sourceID, property, out value);
            OpenAL.ErrorCheck();

            return(value);
        }
Example #3
0
 private static extern void alSourcef(uint sourceID, FloatSourceProperty property, float value);
Example #4
0
 internal static extern void alGetSourcef(uint sourceID, FloatSourceProperty property, out float value);
Example #5
0
 internal static extern void alSource3f(uint sourceID, FloatSourceProperty property, float val1, float val2, float val3);
Example #6
0
 internal static extern void alGetListenerf(FloatSourceProperty param, out float val);
Example #7
0
 internal static extern void alGetListenerfv(FloatSourceProperty param, float[] val);
Example #8
0
 internal static extern void alSource3f(uint sourceID, FloatSourceProperty property, float val1, float val2, float val3);
Example #9
0
 internal static extern void alListener3f(FloatSourceProperty param, float val1, float val2, float val3);
Example #10
0
 internal static extern void alGetListenerfv(FloatSourceProperty param, float[] val);
Example #11
0
 internal static extern void alSourcef(uint sourceID, FloatSourceProperty property, float value);
Example #12
0
 internal static extern void alGetListenerf(FloatSourceProperty param, out float val);
Example #13
0
 internal static extern void alListener3f(FloatSourceProperty param, float val1, float val2, float val3);
Example #14
0
 private static extern void alGetSourcef(uint sourceID, FloatSourceProperty property, out float value);
Example #15
0
        internal static void SetPropertyF(uint sourceID, FloatSourceProperty property, float value)
        {
            OpenAL.DebugFormat ("Setting source {0} property {1} to {2}", sourceID, property, value);

            alSourcef (sourceID, property, value);
            OpenAL.ErrorCheck ();
        }
Example #16
0
        // ReSharper restore InconsistentNaming
        internal static float GetPropertyF(uint sourceID, FloatSourceProperty property)
        {
            float value;
            alGetSourcef (sourceID, property, out value);
            OpenAL.ErrorCheck ();

            return value;
        }