From 0cf32e29465830e7d79eb3d40bb85e328d43625a Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 29 Nov 2010 19:48:18 -0800 Subject: Reorder some parameters for consistency --- OpenAL32/Include/alBuffer.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenAL32/Include/alBuffer.h') diff --git a/OpenAL32/Include/alBuffer.h b/OpenAL32/Include/alBuffer.h index 0bfd9eff..1007e4d7 100644 --- a/OpenAL32/Include/alBuffer.h +++ b/OpenAL32/Include/alBuffer.h @@ -34,10 +34,10 @@ void DecomposeInputFormat(ALenum format, enum SrcFmtChannels *chans, enum SrcFmtType *type); ALuint BytesFromSrcFmt(enum SrcFmtType type); ALuint ChannelsFromSrcFmt(enum SrcFmtChannels chans); -static __inline ALuint FrameSizeFromSrcFmt(enum SrcFmtType type, - enum SrcFmtChannels chans) +static __inline ALuint FrameSizeFromSrcFmt(enum SrcFmtChannels chans, + enum SrcFmtType type) { - return BytesFromSrcFmt(type) * ChannelsFromSrcFmt(chans); + return ChannelsFromSrcFmt(chans) * BytesFromSrcFmt(type); } @@ -60,9 +60,9 @@ enum FmtChannels { void DecomposeFormat(ALenum format, enum FmtChannels *chans, enum FmtType *type); ALuint BytesFromFmt(enum FmtType type); ALuint ChannelsFromFmt(enum FmtChannels chans); -static __inline ALuint FrameSizeFromFmt(enum FmtType type, enum FmtChannels chans) +static __inline ALuint FrameSizeFromFmt(enum FmtChannels chans, enum FmtType type) { - return BytesFromFmt(type) * ChannelsFromFmt(chans); + return ChannelsFromFmt(chans) * BytesFromFmt(type); } -- cgit v1.2.3