blob: d7e7af0940908707cc5e9703a9ebf344e6c39e4f [file] [log] [blame]
Brian Paul9cef3ef2004-10-02 15:43:14 +00001
2 Mesa 6.3 release notes
3
4 month day, 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 6.3) designate new developmental releases.
15Even numbered versions (such as 6.2) designate stable releases.
16
17
18
Brian Paul612d5f62004-10-13 15:57:55 +000019New Features
20------------
Brian Paul9cef3ef2004-10-02 15:43:14 +000021
Brian Paul612d5f62004-10-13 15:57:55 +000022GL_ARB_draw_buffers - allows a fragment program to write to a number of
23 separate color buffers, instead of just one.
24
Brian Paul901d9b92004-10-16 15:04:43 +000025GL_OES_read_format - allows one to query the fastest glReadPixels format
26 and datatype.
Brian Paul612d5f62004-10-13 15:57:55 +000027
Brian Pauldd1a8172005-01-03 15:55:51 +000028GL_ARB_pixel_buffer_object - buffer objects for pixel read/write functions.
29
30DirectFB driver, contributed by Claudio Ciccani. See docs/README.directfb
31for details.
32
33
34
35Vertex/Fragment Program PRINT Instruction
36-----------------------------------------
37
38The GL_NV_vertex_program and GL_NV_fragment_program languages have been
39extended with a PRINT instruction.
40
Brian Paul612d5f62004-10-13 15:57:55 +000041
42
Brian Paulcb3bc2c2005-01-20 04:03:37 +000043glDeleteTextures(), glDeletePrograms() and glDeleteBuffers() Changed
44--------------------------------------------------------------------
45
46To match the behaviour of other OpenGL implementations, glDeleteTextures,
47glDeletePrograms and glDeleteBuffers have been modified so that:
48
49 * The named texture/program/buffer ID is immediately freed for re-use.
50
51 * The actual texture object, program or buffers isn't really deleted until
52 it is no longer bound in any rendering context (the reference count
53 is zero).
54
55Previously, the texture/program/buffer ID wasn't freed until the object
56was really deleted.
57
58Note that textures, programs and buffers can be shared by several rendering
59contexts so they can't be deleted until they're unbound in _all_ contexts.
60
61
62
63
64
Brian Paul612d5f62004-10-13 15:57:55 +000065To Do before release
66--------------------
Brian Paul612d5f62004-10-13 15:57:55 +000067 Fix dinoshade bug
Brian Paul6bca16b2004-11-27 19:42:16 +000068 Switch to freeglut
69 Increase MAX_DRAWBUFFERS
Brian Paula8158592004-12-09 23:21:36 +000070 driver hooks for BeginQuery/EndQuery
Brian Paul6bca16b2004-11-27 19:42:16 +000071
Brian Paul9cef3ef2004-10-02 15:43:14 +000072
73
Brian Paulcb3bc2c2005-01-20 04:03:37 +000074Miscellaneous
75-------------
76
77The main/get.c file is now generated with a Python script.
78
79
Brian Paul9cef3ef2004-10-02 15:43:14 +000080
81Driver Status
82---------------------- ---------------------
83XMesa (Xlib) implements OpenGL 1.5
84OSMesa (off-screen) implements OpenGL 1.5
85Glide (3dfx Voodoo1/2) implements OpenGL 1.3
86SVGA implements OpenGL 1.3
87Wind River UGL implements OpenGL 1.3
88Windows/Win32 implements OpenGL 1.5
89DJGPP implements OpenGL 1.5
90GGI implements OpenGL 1.3
91BeOS implements OpenGL 1.5
92Allegro needs updating
93D3D needs updating
94
95
96----------------------------------------------------------------------
Brian Paulcb3bc2c2005-01-20 04:03:37 +000097$Id: RELNOTES-6.3,v 3.8 2005/01/20 04:03:37 brianp Exp $