Tao.OpenAl SDK Documentation

Al.alGetBuffer3f Method 

Retrieves a floating point property of a buffer.

[Visual Basic]
Public Shared Sub alGetBuffer3f( _
   ByVal buffer As Integer, _
   ByVal attribute As Integer, _
   ByRef value1 As Single, _
   ByRef value2 As Single, _
   ByRef value3 As Single _
)
[C#]
public static void alGetBuffer3f(
   int buffer,
   int attribute,
   out float value1,
   out float value2,
   out float value3
);

Parameters

buffer
Buffer name whose attribute is being retrieved.
attribute
The name of the attribute to be retrieved.
value1
A pointer to an float to hold the retrieved data.
value2
A pointer to an float to hold the retrieved data.
value3
A pointer to an float to hold the retrieved data.

Remarks

There are no float attributes for buffers at this time.

See Also

Al Class | Tao.OpenAl Namespace