Changeset 20475
- Timestamp:
- 07/07/07 09:32:27 (1 year ago)
- Files:
-
- juggler/trunk/modules/vrjuggler/samples/sound/simple/sonix/main.cpp (modified) (2 diffs)
- juggler/trunk/modules/vrjuggler/samples/sound/simple/sonix/sonixApp.cpp (modified) (1 diff)
- juggler/trunk/modules/vrjuggler/samples/sound/simple/sonix/sonixApp.h (modified) (1 diff)
- juggler/trunk/modules/vrjuggler/samples/sound/simple/soundManager/main.cpp (modified) (2 diffs)
- juggler/trunk/modules/vrjuggler/samples/sound/simple/soundManager/soundManagerApp.cpp (modified) (1 diff)
- juggler/trunk/modules/vrjuggler/samples/sound/simple/soundManager/soundManagerApp.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/vrjuggler/samples/sound/simple/sonix/main.cpp
r19729 r20475 43 43 vrjTest::sonixApp* application = new vrjTest::sonixApp(kernel); // Instantiate an instance of the app 44 44 45 #if ! defined(VRJ_USE_COCOA) 45 46 if (argc <= 1) 46 47 { … … 55 56 exit(1); 56 57 } 58 #endif 57 59 58 60 // Load any config files specified on the command line juggler/trunk/modules/vrjuggler/samples/sound/simple/sonix/sonixApp.cpp
r19729 r20475 28 28 29 29 #include <math.h> 30 #include <GL/gl.h>31 #include <GL/glu.h>32 30 33 31 #include <gmtl/Matrix.h> juggler/trunk/modules/vrjuggler/samples/sound/simple/sonix/sonixApp.h
r19729 r20475 32 32 #include <iostream> 33 33 #include <iomanip> 34 #include <GL/gl.h> 35 #include <GL/glu.h> 34 35 #if defined(__APPLE__) 36 # include <OpenGL/gl.h> 37 #else 38 # include <GL/gl.h> 39 #endif 36 40 37 41 #include <vrj/Draw/OGL/GlApp.h> juggler/trunk/modules/vrjuggler/samples/sound/simple/soundManager/main.cpp
r19729 r20475 43 43 vrjTest::soundManagerApp* application = new vrjTest::soundManagerApp(kernel); // Instantiate an instance of the app 44 44 45 #if ! defined(VRJ_USE_COCOA) 45 46 if (argc <= 1) 46 47 { … … 55 56 exit(1); 56 57 } 58 #endif 57 59 58 60 // Load any config files specified on the command line juggler/trunk/modules/vrjuggler/samples/sound/simple/soundManager/soundManagerApp.cpp
r19729 r20475 28 28 29 29 #include <math.h> 30 #include <GL/gl.h>31 #include <GL/glu.h>32 30 33 31 #include <gmtl/Matrix.h> juggler/trunk/modules/vrjuggler/samples/sound/simple/soundManager/soundManagerApp.h
r19729 r20475 32 32 #include <iostream> 33 33 #include <iomanip> 34 #include <GL/gl.h> 35 #include <GL/glu.h> 34 35 #if defined(__APPLE__) 36 # include <OpenGL/gl.h> 37 #else 38 # include <GL/gl.h> 39 #endif 36 40 37 41 #include <vrj/Draw/OGL/GlApp.h>
