diff options
Diffstat (limited to 'al/buffer.h')
-rw-r--r-- | al/buffer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/al/buffer.h b/al/buffer.h index d1c3c747..61ae1863 100644 --- a/al/buffer.h +++ b/al/buffer.h @@ -61,6 +61,8 @@ enum FmtChannels : unsigned char { ALuint BytesFromFmt(FmtType type) noexcept; ALuint ChannelsFromFmt(FmtChannels chans) noexcept; +inline ALuint FrameSizeFromFmt(FmtChannels chans, FmtType type) noexcept +{ return ChannelsFromFmt(chans) * BytesFromFmt(type); } struct ALbuffer { |