Changes between Version 3 and Version 4 of GraphicsApiOld
- Timestamp:
- Apr 24, 2007, 10:31:01 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GraphicsApiOld
v3 v4 24 24 On Unix, your graphics code must be put in a separate shared library (.so) file. This is because Unix hosts may not have the needed libraries (OpenGL, GLUT, X11). If an application is linked dynamically to these libraries, it will fail on startup if the libraries are not present. On the other hand, if an application is linked statically to these libraries, graphics will be done very inefficiently on most hosts. 25 25 26 The shared library must have the same name as the executable followed by '.so'. It must be linked with `libboinc_graphics_impl.a`, with your rendering and input-handling functions, and (dynamically) with glut and opengl. You must bundle the main program and the shared library together as a [ http://boinc.berkeley.edu/tool_update_versions.phpmulti-file application version]. Unix/Linux applications that use graphics should compile all files with `-D_REENTRANT`, since graphics uses multiple threads.26 The shared library must have the same name as the executable followed by '.so'. It must be linked with `libboinc_graphics_impl.a`, with your rendering and input-handling functions, and (dynamically) with glut and opengl. You must bundle the main program and the shared library together as a [UpdateVersions multi-file application version]. Unix/Linux applications that use graphics should compile all files with `-D_REENTRANT`, since graphics uses multiple threads. 27 27 28 The [ http://boinc.berkeley.edu/example.phpBOINC example application] uses this technique, and shows the Makefile command that are needed to produce the shared library on Unix.28 The [ExampleApps BOINC example application] uses this technique, and shows the Makefile command that are needed to produce the shared library on Unix. 29 29 30 30 == Rendering and input-handling functions ==