Sha256: 9e4e10ca3e2959c929dc5f83466722f69189731da3e040c9b6478b9f0787d697
Contents?: true
Size: 629 Bytes
Versions: 1
Compression:
Stored size: 629 Bytes
Contents
module FMOD module Core ## # These definitions describe the native format of the hardware or software # buffer that will be used. module SoundFormat ## # Uninitialized / unknown. NONE = 0 ## # 8-bit integer PCM data. PCM_8 = 1 ## # 16-bit integer PCM data. PCM_16 = 2 ## # 24-bit integer PCM data. PCM_24 = 3 ## # 32-bit integer PCM data. PCM_32 = 4 ## # 32-bit floating point PCM data. PCM_FLOAT = 5 ## # Sound data is in its native compressed format. BIT_STREAM = 6 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fmod-0.9.0 | lib/fmod/core/sound_format.rb |