blob: ca5b4490716f55dfd02063387dcbfaff87201c4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <stdlib.h>
#include <AL/alut.h>
/*
This is the 'Hello World' program from the ALUT
reference manual.
Link using '-lalut -lopenal -lpthread'.
*/
int main(int argc, char **argv)
{
ALuint helloBuffer, helloSource;
alutInit(&argc, argv);
helloBuffer = alutCreateBufferHelloWorld();
alGenSources(1, &helloSource);
alSourcei(helloSource, AL_BUFFER, helloBuffer);
alSourcePlay(helloSource);
alutSleep(1);
alutExit();
return EXIT_SUCCESS;
}
|