- Timestamp:
- 11/09/10 15:57:20 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/applications/present3D/present3D.cpp
r11764 r11905 57 57 #endif 58 58 59 #if OSG_LIBRARY_STATIC59 #ifdef OSG_LIBRARY_STATIC 60 60 61 61 // include the plugins we need … … 64 64 USE_OSGPLUGIN(p3d) 65 65 USE_OSGPLUGIN(paths) 66 67 USE_OSGPLUGIN(freetype)68 66 USE_OSGPLUGIN(rgb) 69 USE_OSGPLUGIN(png)70 USE_OSGPLUGIN(jpeg)71 72 USE_OSGPLUGIN(ffmpeg)73 USE_OSGPLUGIN(pdf)74 75 67 USE_OSGPLUGIN(OpenFlight) 76 68 USE_OSGPLUGIN(obj) 77 69 70 #ifdef USE_FREETYPE 71 USE_OSGPLUGIN(freetype) 72 #endif 73 74 #ifdef USE_PNG 75 USE_OSGPLUGIN(png) 76 #endif 77 78 #ifdef USE_JPEG 79 USE_OSGPLUGIN(jpeg) 80 #endif 81 82 #ifdef USE_FFMPEG 83 USE_OSGPLUGIN(ffmpeg) 84 #endif 85 86 #ifdef USE_POPPLER_CAIRO 87 USE_OSGPLUGIN(pdf) 88 #endif 89 90 #ifdef USE_CURL 78 91 USE_OSGPLUGIN(curl) 79 92 #endif 80 93 81 94 // include the platform specific GraphicsWindow implementation.
