-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
27 lines (27 loc) · 1.19 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// ===================================================================================
// Isadora OpenFrameworks additions 2011 Vincent Rebers. http://www.say-nono.com
// ===================================================================================
//
// IMPORTANT:
// In order to avoid FMODex you need to modify two openframeworks files and be sure that you add the
// definition -DUSE_OPENAL to the Project Settings (in my case "GCC 4.2" -> "Other C++ Flags"):
// ---------------------------------------------------------------------------------
//
// ofMain.h (Line:xxx) :
// //--------------------------
// // audio
// #include "ofSoundStream.h"
// #ifndef USE_OPENAL //<----- if USE_OPENAL is selected, don't load the regular ofSoundPlayer
// #include "ofSoundPlayer.h"
// #endif //
//
// ---------------------------------------------------------------------------------
//
// ofAppRunner.cpp (Line:58) :
// //------------------------
// // try to close FMOD:
// #ifndef USE_OPENAL //<----- if USE_OPENAL is selected, don't load the regular ofSoundPlayer
// ofSoundPlayer::closeFmod();
// #endif //
//
//// ---------------------------------------------------------------------------------