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-3.3 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. Mesa 3.3 release notes
  2. PLEASE READ!!!!
  3. Header file / GLenum changes
  4. ----------------------------
  5. The gl.h and glu.h headers now use #defines to define all GL_* tokens
  6. instead of C-language enums. This change improves Mesa/OpenGL
  7. interoperability.
  8. New API dispatch code
  9. ---------------------
  10. The core Mesa gl* functions are now implemented with a new dispatch
  11. (jump table) which will allow simultaneous direct/indirect rendering.
  12. The code is found in the glapi*.[ch] files.
  13. Of interest: the actual "glFooBar" functions are generated with
  14. templatized code defined in glapitemp.h and included by glapi.c
  15. The glapitemp.h template should be reusable for all sorts of OpenGL
  16. projects.
  17. New thread support
  18. ------------------
  19. Thread support in Mesa has been rewritten. The glthread.[ch] files
  20. replace mthreads.[ch]. Thread safety is always enabled (on platforms
  21. which support threads, that is). There is virtually no performance
  22. penalty for typical single-thread applications. See the glapi.c
  23. file for details.
  24. Make configuration changes
  25. --------------------------
  26. If you use the old-style (non GNU automake) method to build Mesa note
  27. that several of the configuration names have changed:
  28. Old name New name
  29. ------------- ----------------
  30. linux-elf linux
  31. linux linux-static
  32. linux-386-elf linux-386
  33. linux-386 linux-386-static
  34. etc.
  35. New extensions
  36. --------------
  37. GL_EXT_transpose_matrix
  38. Adds glLoadTransposeMatrix() and glMultTransposeMatrix() functions.
  39. See http://reality.sgi.com/opengl/arb/extensions/ext_text/GL_EXT_transpose_matrix.txt
  40. GL_EXT_texture_add_env
  41. Adds GL_ADD texture environment mode.
  42. See http://www.berkelium.com/OpenGL/EXT/texture_env_add.txt
  43. GL_EXT_texture_lod_bias
  44. Allows mipmapped texture blurring and sharpening.
  45. GLX_EXT_visual_rating extension
  46. This extension has no effect in stand-alone Mesa (used for DRI).
  47. GL_HP_occlusion_test
  48. Used for bounding box occlusion testing (see demos/occlude.c).
  49. GL_SGIX_pixel_texture / GL_SGIS_pixel_texture
  50. Lets glDraw/CopyPixels draw a texture coordinate image.
  51. GL_SGI_color_matrix
  52. Adds a color matrix and another set of scale and bias parameters
  53. to the glDraw/CopyPixels paths.
  54. GLX_SGI_make_current_read functionality
  55. ---------------------------------------
  56. The functionality of this extension is needed for GLX 1.3 (and required
  57. for the Linux/OpenGL standards base).
  58. Implementing this function required a **DEVICE DRIVER CHANGE**.
  59. The old SetBuffer() function has been replaced by SetReadBuffer() and
  60. SetDrawBuffer(). All device drivers will have to be updated because
  61. of this change.
  62. The new function, glXMakeContextCurrent(), in GLX 1.3 now works in Mesa.
  63. The xdemos/wincopy.c program demonstrates it.
  64. Image-related code changes
  65. --------------------------
  66. The imaging path code used by glDrawPixels, glTexImage[123]D,
  67. glTexSubImage[123], etc has been rewritten. It's now faster,
  68. uses less memory and has several bug fixes. This work was
  69. actually started in Mesa 3.1 with the glTexImage paths but has now
  70. been carried over to glDrawPixels as well.
  71. Device driver interface changes
  72. -------------------------------
  73. Added new functions for hardware stencil buffer support:
  74. WriteStencilSpan
  75. ReadStencilSpan
  76. WriteStencilPixels
  77. ReadStencilPixels
  78. Removed old depth buffer functions:
  79. AllocDepthBuffer
  80. DepthTestSpan
  81. DepthTestPixels
  82. ReadDepthSpanFloat
  83. ReadDepthSpanInt
  84. Added new depth buffer functions:
  85. WriteDepthSpan
  86. ReadDepthSpan
  87. WriteDepthPixels
  88. ReadDepthPixels
  89. These functions always read/write 32-bit GLuints. This will allow
  90. drivers to have anywhere from 0 to 32-bit Z buffers without
  91. recompiling for 16 vs 32 bits as was previously needed.
  92. New texture image functions
  93. The entire interface for texture image specification has been updated.
  94. With the new functions, it's optional for Mesa to keep an internal copy
  95. of all textures. Texture download should be a lot faster when the extra
  96. copy isn't made.
  97. Misc changes
  98. TexEnv now takes a target argument
  99. Removed UseGlobalTexturePalette (use Enable function instead)
  100. Also added
  101. ReadPixels
  102. CopyPixels
  103. The SetBufffer function has been replaced by SetDrawBuffer and
  104. SetReadBuffer functions. This lets core Mesa independently
  105. specify which buffer is to be used for reading and which for
  106. drawing.
  107. The Clear function's mask parameter has changed. Instead of
  108. mask being the flags specified by the user to glClear, the
  109. mask is now a bitmask of the DD_*_BIT flags in dd.h. Now
  110. multiple color buffers can be specified for clearing (ala
  111. glDrawBuffers). The driver's Clear function must also
  112. check the glColorMask glIndexMask, and glStencilMask settings
  113. and do the right thing. See the X/Mesa, OS/Mesa, or FX/Mesa
  114. drivers for examples.
  115. The depth buffer changes shouldn't be hard to make for existing
  116. drivers. In fact, it should simply the code. Be careful with
  117. the depthBits value passed to gl_create_context(). 1 is a bad
  118. value! It should normally be 0, 16, 24, or 32.
  119. gl_create_framebuffer() takes new arguments which explicitly tell
  120. core Mesa which ancillary buffers (depth, stencil, accum, alpha)
  121. should be implemented in software. Mesa hardware drivers should
  122. carefully set these flags depending on which buffers are in the
  123. graphics card.
  124. Internal constants
  125. ------------------
  126. Point and line size range and granularity limits are now stored
  127. in the gl_constants struct, which is the Const member of GLcontext.
  128. The limits are initialized from values in config.h but may be
  129. overridden by device drivers to reflect the limits of that driver's
  130. hardware.
  131. Also added constants for NumAuxBuffers and SubPixelBits.
  132. ----------------------------------------------------------------------
  133. $Id: RELNOTES-3.3,v 1.2 2000/04/08 18:58:05 brianp Exp $