* Device format information ************************************************/
| 1248 | * Device format information |
| 1249 | ************************************************/ |
| 1250 | const ALCchar *DevFmtTypeString(DevFmtType type) noexcept |
| 1251 | { |
| 1252 | switch(type) |
| 1253 | { |
| 1254 | case DevFmtByte: return "Signed Byte"; |
| 1255 | case DevFmtUByte: return "Unsigned Byte"; |
| 1256 | case DevFmtShort: return "Signed Short"; |
| 1257 | case DevFmtUShort: return "Unsigned Short"; |
| 1258 | case DevFmtInt: return "Signed Int"; |
| 1259 | case DevFmtUInt: return "Unsigned Int"; |
| 1260 | case DevFmtFloat: return "Float"; |
| 1261 | } |
| 1262 | return "(unknown type)"; |
| 1263 | } |
| 1264 | const ALCchar *DevFmtChannelsString(DevFmtChannels chans) noexcept |
| 1265 | { |
| 1266 | switch(chans) |
no outgoing calls
no test coverage detected