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

Copyright(c) Sven Panne 2003-2013
LicenseBSD3
MaintainerSven Panne <svenpanne@gmail.com>
Stabilitystable
Portabilityportable
Safe HaskellSafe-Inferred
LanguageHaskell98

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 = CChar

8-bit boolean

type ALCchar = CChar

Character

type ALCbyte = CSChar

Signed 8-bit 2's complement integer

type ALCubyte = CUChar

Unsigned 8-bit integer

type ALCshort = CShort

Signed 16-bit 2's complement integer

type ALCushort = CUShort

Unsigned 16-bit integer

type ALCint = CInt

Signed 32-bit 2's complement integer

type ALCuint = CUInt

Unsigned 32-bit integer

type ALCsizei = CInt

Non-negatitve 32-bit binary integer size

type ALCenum = CInt

Enumerated 32-bit value

type ALCfloat = CFloat

32-bit IEEE754 floating-point

type ALCdouble = CDouble

64-bit IEEE754 floating-point