home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / documents / OpenGL / opengldoc / dso next >
Encoding:
Text File  |  1996-11-11  |  730 b   |  23 lines

  1. Right now, there are three dso's to support the OpenGL core:
  2.  
  3.     /usr/lib/X11/dyDDX/glx.so
  4.         this contains the server side protocol decoder and dispatch
  5.         code which calls the gl* routines as well as a few special
  6.         routines.  The Xserver dlopen()s this dso when it receives
  7.         the first GLX request.
  8.  
  9.     /usr/lib/libGL.so
  10.         this contains the client side GLX code, protocol
  11.         encoding code, and direct rendering binding/unbinding support.
  12.         this library exports libGLcore.so
  13.  
  14.     /usr/lib/libGLcore.so
  15.         this contains the platform specific (i.e. direct) rendering 
  16.         code, and some special routines.  when an application links 
  17.         with libGL.so it automatically links libGLcore.so.
  18.  
  19. Also,
  20.  
  21.     /usr/lib/libGLU.so
  22.         the GLU utilities library.
  23.