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.3 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. Mesa 6.3 release notes
  2. July 20, 2005
  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 6.3) designate new developmental releases.
  8. Even numbered versions (such as 6.2) designate stable releases.
  9. New Features
  10. ------------
  11. GL_ARB_draw_buffers - allows a fragment program to write to a number of
  12. separate color buffers, instead of just one.
  13. GL_OES_read_format - allows one to query the fastest glReadPixels format
  14. and datatype.
  15. GL_ARB_pixel_buffer_object - buffer objects for pixel read/write functions.
  16. GL_EXT_framebuffer_object - allows render-to-texture and provides a
  17. window-system indepedent Pbuffer facility.
  18. The Mesa CVS tree contains a couple tests of this extension.
  19. DirectFB driver, contributed by Claudio Ciccani. See docs/README.directfb
  20. for details.
  21. Vertex/Fragment Program PRINT Instruction
  22. -----------------------------------------
  23. The GL_NV_vertex_program and GL_NV_fragment_program languages have been
  24. extended with a PRINT instruction.
  25. glDeleteTextures(), glDeletePrograms() and glDeleteBuffers() Changed
  26. --------------------------------------------------------------------
  27. To match the behaviour of other OpenGL implementations, glDeleteTextures,
  28. glDeletePrograms and glDeleteBuffers have been modified so that:
  29. * The named texture/program/buffer ID is immediately freed for re-use.
  30. * The actual texture object, program or buffers isn't really deleted until
  31. it is no longer bound in any rendering context (the reference count
  32. is zero).
  33. Previously, the texture/program/buffer ID wasn't freed until the object
  34. was really deleted.
  35. Note that textures, programs and buffers can be shared by several rendering
  36. contexts so they can't be deleted until they're unbound in _all_ contexts.
  37. GL_EXT_framebuffer_object changes
  38. ---------------------------------
  39. Implementing this extension involved changing a lot of code (for the better).
  40. The gl_framebuffer object now a collection of gl_renderbuffer objects.
  41. Renderbuffers may store colors, stencil indices, or depth values. The
  42. gl_framebuffer and gl_renderbuffer types are object-oriented in design.
  43. All the old RGB, color index, stencil and depth-related span functions for
  44. reading/writing pixels from/to buffers has changed. Now, all pixels are
  45. read/written through a set of common renderbuffer functions (methods).
  46. Most device drivers have been updated for these changes, but some haven't.
  47. To Do (someday) items
  48. ---------------------
  49. Switch to freeglut
  50. Increase MAX_DRAWBUFFERS
  51. driver hooks for BeginQuery/EndQuery
  52. Miscellaneous
  53. -------------
  54. The main/get.c file is now generated with a Python script (get_gen.py).
  55. Driver Status
  56. ---------------------- ---------------------
  57. XMesa (Xlib) implements OpenGL 1.5
  58. OSMesa (off-screen) implements OpenGL 1.5
  59. Glide (3dfx Voodoo1/2) implements OpenGL 1.3
  60. SVGA implements OpenGL 1.3
  61. Wind River UGL implements OpenGL 1.3
  62. Windows/Win32 implements OpenGL 1.5
  63. DJGPP implements OpenGL 1.5
  64. GGI implements OpenGL 1.3
  65. BeOS implements OpenGL 1.5
  66. Allegro needs updating
  67. D3D needs updating
  68. ----------------------------------------------------------------------