Brian Paul | d805900 | 2004-01-20 02:54:51 +0000 | [diff] [blame] | 1 | |
| 2 | Mesa 6.1 release notes |
| 3 | |
| 4 | Month day, 2004 |
| 5 | |
| 6 | PLEASE READ!!!! |
| 7 | |
| 8 | |
| 9 | |
| 10 | Introduction |
| 11 | ------------ |
| 12 | |
| 13 | Mesa uses an even/odd version number scheme like the Linux kernel. |
| 14 | Odd numbered versions (such as 6.1) designate new developmental releases. |
| 15 | Even numbered versions (such as 6.0) designate stable releases. |
| 16 | |
| 17 | |
| 18 | New Features |
| 19 | ------------ |
| 20 | |
Brian Paul | 07cc9af | 2004-05-05 00:02:23 +0000 | [diff] [blame^] | 21 | GL_ARB_texture_float extension (not finished yet) |
| 22 | |
| 23 | Supports 16 and 32-bit floating point textures. |
| 24 | |
| 25 | GL_ARB_half_float_pixel extension (not finished yet) |
| 26 | |
| 27 | Adds the GLhalfARB datatype for 16-bit floating point for glDraw/ReadPixels, |
| 28 | and glTexImage commands. |
| 29 | |
| 30 | |
| 31 | |
| 32 | Texture image handling |
| 33 | ---------------------- |
| 34 | |
| 35 | The code which implements image conversion, pixel transfer ops, etc |
| 36 | for glTexImage commands has been rewritten. |
| 37 | |
| 38 | Now the gl_texture_format struct has a new StoreImage function |
| 39 | pointer. Each texture format must implement this function. The |
| 40 | function is totally responsible for converting the user's texture |
| 41 | image into the specific format. A few helper functions makes this |
| 42 | relatively simple. |
| 43 | |
| 44 | Overall, the code is much simpler, cleaner and easier to work with |
| 45 | now. Adding new texture formats is straight-forward and there's no |
| 46 | longer any distinction between "hardware" and "software" formats. |
| 47 | |
| 48 | Finally, the code for compressed texture images has been reorganized |
| 49 | as well. |
| 50 | |
| 51 | Removed files: |
| 52 | texutil.c |
| 53 | texutil.h |
| 54 | texutil_tmp.h |
| 55 | |
| 56 | New files: |
| 57 | texcompress_s3tc.c |
| 58 | texcompress_fxt1.c |
Brian Paul | d805900 | 2004-01-20 02:54:51 +0000 | [diff] [blame] | 59 | |
| 60 | |
| 61 | |
| 62 | Driver / context changes |
| 63 | ------------------------ |
| 64 | |
| 65 | The _mesa_create_context() and _mesa_initialize_context() function |
| 66 | parameters have changed. They now take a pointer to a struct |
| 67 | dd_function_table. Drivers can initialize this table by calling |
| 68 | _mesa_init_driver_functions(). Drivers should then plug in the special |
| 69 | functions they implement. In particular, the ctx->Driver.NewTextureObject |
| 70 | pointer _must_ be set so that the default texture objects created in |
| 71 | _mesa_create/initialize_context() are correctly built. |
| 72 | |
| 73 | The _mesa_init_driver_functions() function allows a lot of redundant code |
| 74 | to be removed from the device drivers (such as initializing |
| 75 | ctx->Driver.Accum to point to _swrast_Accum). Adding new functions to |
| 76 | the dd_function_table can be done with less hassle since the pointer can |
| 77 | be initialized in _mesa_init_driver_functions() rather than in _all_ the |
| 78 | drivers. |
| 79 | |
| 80 | |
Brian Paul | d805900 | 2004-01-20 02:54:51 +0000 | [diff] [blame] | 81 | Device Drivers |
| 82 | -------------- |
| 83 | |
Brian Paul | edd1d86 | 2004-01-23 01:56:26 +0000 | [diff] [blame] | 84 | Mesa advertises itself as supporting OpenGL 1.2, 1.3, 1.4 or 1.5 |
| 85 | depending on the device driver's capabilities. For example, if the |
| 86 | driver enables all the ARB extensions which are part of OpenGL 1.5 |
| 87 | then glGetString(GL_VERSION) will return "1.5". Otherwise, it'll |
| 88 | return "1.4" or the next lower version that implements all required |
| 89 | functionality. |
Brian Paul | d805900 | 2004-01-20 02:54:51 +0000 | [diff] [blame] | 90 | |
| 91 | A number of Mesa's software drivers haven't been actively maintained for |
| 92 | some time. We rely on volunteers to maintain many of the drivers. |
| 93 | Here's the current status of all included drivers: |
| 94 | |
Brian Paul | d805900 | 2004-01-20 02:54:51 +0000 | [diff] [blame] | 95 | Driver Status |
| 96 | ---------------------- --------------------- |
| 97 | XMesa (Xlib) implements OpenGL 1.5 |
| 98 | OSMesa (off-screen) implements OpenGL 1.5 |
| 99 | FX (3dfx Voodoo1/2) implements OpenGL 1.3 |
| 100 | SVGA implements OpenGL 1.3 |
| 101 | Wind River UGL implements OpenGL 1.3 |
| 102 | Windows/Win32 implements OpenGL 1.5 |
| 103 | DJGPP implements OpenGL 1.5 |
| 104 | GGI implements OpenGL 1.3 |
| 105 | BeOS implements OpenGL 1.5 |
| 106 | Allegro needs updating |
| 107 | D3D needs updating |
| 108 | |
| 109 | |
| 110 | |
Brian Paul | d805900 | 2004-01-20 02:54:51 +0000 | [diff] [blame] | 111 | Other Changes |
| 112 | ------------- |
| 113 | |
Brian Paul | edd1d86 | 2004-01-23 01:56:26 +0000 | [diff] [blame] | 114 | See the VERSIONS file for more details about bug fixes, etc. in Mesa 6.1. |
Brian Paul | d805900 | 2004-01-20 02:54:51 +0000 | [diff] [blame] | 115 | |
| 116 | |
| 117 | ---------------------------------------------------------------------- |
Brian Paul | 07cc9af | 2004-05-05 00:02:23 +0000 | [diff] [blame^] | 118 | $Id: RELNOTES-6.1,v 3.3 2004/05/05 00:02:23 brianp Exp $ |