OpenAL-1.4.0.2: A binding to the OpenAL cross-platform 3D audio API

Portabilityportable
Stabilitystable
Maintainersven.panne@aedion.de
Safe HaskellSafe-Inferred

Sound.OpenAL.ALC.BasicTypes

Description

This module corresponds to the introductory parts of chapter 6 (AL Contexts and the ALC API) of the OpenAL Specification and Reference (version 1.1).

The context API makes use of ALC types which are defined separately from the AL types - there is an ALCboolean, ALCchar, etc.

Synopsis

Documentation

type ALCboolean = Int8Source

8-bit boolean

type ALCchar = Int8Source

Character

type ALCbyte = Int8Source

Signed 8-bit 2's complement integer

type ALCubyte = Word8Source

Unsigned 8-bit integer

type ALCshort = Int16Source

Signed 16-bit 2's complement integer

type ALCushort = Word16Source

Unsigned 16-bit integer

type ALCint = Int32Source

Signed 32-bit 2's complement integer

type ALCuint = Word32Source

Unsigned 32-bit integer

type ALCsizei = Int32Source

Non-negatitve 32-bit binary integer size

type ALCenum = Int32Source

Enumerated 32-bit value

type ALCfloat = FloatSource

32-bit IEEE754 floating-point

type ALCdouble = DoubleSource

64-bit IEEE754 floating-point