aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alu.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-12-08 02:56:24 -0800
committerChris Robinson <[email protected]>2010-12-08 02:56:24 -0800
commit4010a6b745b959cb583ad53fd68489a57a4034a7 (patch)
treeb4da407cd1b2fb2eaed3ce4648bf9c014180ac53 /OpenAL32/Include/alu.h
parent0218957eb5c22fd5a514545149ccb2275a3ed0d5 (diff)
Remove some now-unused functions
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r--OpenAL32/Include/alu.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index a0c0e4b3..cc47cc1b 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -95,13 +95,6 @@ typedef enum {
#endif
-ALuint aluBytesFromFormat(ALenum format);
-ALuint aluChannelsFromFormat(ALenum format);
-static __inline ALuint aluFrameSizeFromFormat(ALenum format)
-{
- return aluBytesFromFormat(format) * aluChannelsFromFormat(format);
-}
-
static __inline ALdouble lerp(ALdouble val1, ALdouble val2, ALdouble mu)
{
return val1 + (val2-val1)*mu;