home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / System / Mesa-3.1 / docs / RELNOTES < prev    next >
Text File  |  1999-10-21  |  4KB  |  149 lines

  1.  
  2.                          Mesa 3.1 release notes
  3.  
  4.                              PLEASE READ!!!!
  5.  
  6.  
  7.  
  8.  
  9. New copyright
  10. -------------
  11.  
  12. Mesa 3.1 will be distributed under an XFree86-style copyright instead
  13. of the GNU LGPL.
  14.  
  15.  
  16. New directories
  17. ---------------
  18.  
  19. All documentation files are now in the docs/ directory.
  20. All shell scripts are now in the bin/ directory.
  21.  
  22.  
  23. New library names
  24. -----------------
  25.  
  26. Formerly, the main Mesa library was named libMesaGL.so (or libMesaGL.a)
  27. and the GLU library was named libMesaGLU.so (or libMesaGLU.a).
  28.  
  29. Now, the main library is named libGL.so (or libGL.a) and the GLU library
  30. is named libGLU.so (or libGLU.a).
  31.  
  32. The change allows Mesa to be more easily substituted for OpenGL.
  33. Specifically, the linker/loader on some Unix-like systems won't
  34. allow libMesaGL.so to be used instead of libGL.so if the application
  35. was linked with the former.
  36.  
  37. Warning: if you have another OpenGL implementation installed on your
  38. system (i.e. you have another OpenGL libGL.so) you'll have to be
  39. carefull about which library (OpenGL or Mesa) you link against.  Be
  40. aware of -L linker flags and the value of the LD_LIBRARY_PATH environment
  41. variable.
  42.  
  43.  
  44. New library versioning
  45. ----------------------
  46.  
  47. Previously, the Mesa GL library was named libMesaGL.so.3.0
  48. To better support Linux/OpenGL standards, the Mesa GL library is now
  49. named libGL.so.1.2.030100  This indicates version 1.2 of the OpenGL spec
  50. and Mesa implementation 3.1.0
  51.  
  52. In the long term this will allow better interoperability with other
  53. OpenGL implementations, especially on Linux.  In the short term,
  54. OpenGL apps may have to be relinked to use the new library naming.
  55.  
  56.  
  57.  
  58. New makefiles
  59. -------------
  60.  
  61. The old Makefiles found in the various directories have been renamed
  62. to Makefile.X11 in order to prevent filename collisions with autoconfig-
  63. generated Makefiles.
  64.  
  65. The top-level Makefile simply includes Makefile.X11
  66. If your top-level Makefile get's overwritten/destroyed you can restore
  67. it by copying Makefile.X11 to Makefile
  68.  
  69.  
  70. New extensions
  71. --------------
  72.  
  73. GL_EXT_stencil_wrap
  74.     Implements two new stencil operations: GL_INCR_WRAP_EXT and
  75.     GL_DECR_WRAP_EXT which allow stencil increment and decrement
  76.     without clamping.
  77.  
  78. GL_INGR_blend_func_separate
  79.     Allows specification of blend factors for RGB and Alpha independently.
  80.     (INGR = Intergraph)
  81.  
  82. GL_ARB_multitexture
  83.     Multiple simultaneous textures.  (ARB = Architecture Review Board)
  84.  
  85. GL_NV_texgen_reflection
  86.     nVidia texgen extension for better reflection mapping.
  87.  
  88. GL_PGI_misc_hints
  89.     Assorted transformation hints.
  90.  
  91. GL_EXT_compiled_vertex_array
  92.     Compiled vertex arrays.
  93.  
  94. GL_EXT_clip_volume_hint
  95.     Allows one to disable clip volume (frustum) testing.
  96.  
  97.  
  98.  
  99. Extensions removed
  100. ------------------
  101.  
  102. GL_EXT_multitexture - obsolete in favor of GL_ARB_multitexture
  103.  
  104.  
  105.  
  106. Config file
  107. -----------
  108.  
  109. By default, /etc/mesa.conf will be read when Mesa starts.  This
  110. file controls default hints, enable/disable of extensions, and
  111. more.  See the CONFIG file for documentation.
  112.  
  113.  
  114.  
  115. Optimizations
  116. -------------
  117.  
  118. Keith Whitwell has contributed significant optimizations to Mesa's
  119. vertex transformation code.  Basically, the whole transformation
  120. stage of Mesa has been rewritten.
  121.  
  122. It's impossible to give a speedup factor.  You'll just have to
  123. try your app and see how it performs.
  124.  
  125.  
  126.  
  127. Device Driver changes
  128. ---------------------
  129.  
  130. A bunch of new device driver functions have been added.  See src/dd.h
  131. Keith Harrison contributed many of them.  I've been planning on adding
  132. a bunch of functions like these to make writing hardware drivers easier.
  133. More such function will probably be added in the near future.
  134.  
  135.  
  136.  
  137. Miscellaneous
  138. -------------
  139.  
  140. util/glstate.c has some handy functions for debugging.  Basically, it
  141. offers a simple function for printing GL state variables.  It's not
  142. finished yet.  There's a LOT more GLenum records to be added (see the
  143. code).  Anyone want to help?
  144.  
  145.  
  146.  
  147. ----------------------------------------------------------------------
  148. $Id: RELNOTES,v 1.10 1999/10/17 18:24:53 brianp Exp $
  149.