Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RELNOTES-6.0 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. Mesa 6.0 release notes
  2. January 16, 2004
  3. PLEASE READ!!!!
  4. Introduction
  5. ------------
  6. Mesa uses an even/odd version number scheme like the Linux kernel.
  7. Odd numbered versions (such as 5.1) designate new developmental releases.
  8. Even numbered versions (such as 6.0) designate stable releases.
  9. Mesa version 6.0 signifies two things:
  10. 1. A stabilization of the 5.1 development release
  11. 2. Implementation of the OpenGL 1.5 specification. When you query
  12. glGetString(GL_VERSION) "1.5" will be returned (as long as the
  13. driver supports all the required features).
  14. Note that the Mesa major version number is incremented with the OpenGL
  15. minor version number:
  16. Mesa 1.x == OpenGL 1.0
  17. Mesa 2.x == OpenGL 1.1
  18. Mesa 3.x == OpenGL 1.2
  19. Mesa 4.x == OpenGL 1.3
  20. Mesa 5.x == OpenGL 1.4
  21. Mesa 6.x == OpenGL 1.5
  22. New Features
  23. ------------
  24. Mesa 5.1 already had all the new features of OpenGL 1.5, implemented as
  25. extensions. These extensions were simply promoted to standard features:
  26. GL_ARB_occlusion_query extension
  27. GL_ARB_texture_non_power_of_two extension
  28. GL_ARB_vertex_buffer_object extension
  29. GL_EXT_shadow_funcs
  30. Device Drivers
  31. --------------
  32. Mesa advertises itself as either OpenGL 1.2 or OpenGL 1.3 depending on
  33. the device driver. For example, if the driver enables all the ARB
  34. extensions which are part of OpenGL 1.3 then glGetString(GL_VERSION)
  35. will return "1.3". Otherwise, it'll return "1.2".
  36. A number of Mesa's software drivers haven't been actively maintained for
  37. some time. We rely on volunteers to maintain many of the drivers.
  38. Here's the current status of all included drivers:
  39. Driver Status
  40. ---------------------- ---------------------
  41. XMesa (Xlib) implements OpenGL 1.5
  42. OSMesa (off-screen) implements OpenGL 1.5
  43. FX (3dfx Voodoo1/2) implements OpenGL 1.3
  44. SVGA implements OpenGL 1.3
  45. Wind River UGL implements OpenGL 1.3
  46. Windows/Win32 implements OpenGL 1.5
  47. DJGPP implements OpenGL 1.5
  48. GGI implements OpenGL 1.3
  49. BeOS implements OpenGL 1.5
  50. Allegro needs updating
  51. D3D needs updating
  52. Other Changes
  53. -------------
  54. See the VERSIONS file for more details about bug fixes, etc. in Mesa 6.0.
  55. ----------------------------------------------------------------------
  56. $Id: RELNOTES-6.0,v 1.3 2004/01/15 15:47:57 brianp Exp $