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