언어 설정

Menu
Sites
Language
Using OpenAL in Tizen

Hi,

what headers should I include and what namespace should I use to start using OpenAL library?

In documentation there is only a short note that it is possible, but nothing else (with the broken link to Creative Labs web site)

Responses

3 댓글
youngsik yoon

Please refer to the "MediaApp" sample. In the sample code, GlesCubePlayer.h/cpp looks using OpenAL.

hgw7

#include <AL/al.h>
#include <AL/alc.h>
#include <AL/alut.h>

hgw7