diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-04-20 02:34:12 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-04-20 02:34:12 +0000 |
commit | 3518a7950f3d1d57edb0a5d346c28bccade6fb61 (patch) | |
tree | 068ee447fda806cb4d5190e4f7e178096f19acdf /docs | |
parent | e3a7cc1f9e32c27248d11c88700004835dc7d870 (diff) | |
download | external_mesa3d-3518a7950f3d1d57edb0a5d346c28bccade6fb61.zip external_mesa3d-3518a7950f3d1d57edb0a5d346c28bccade6fb61.tar.gz external_mesa3d-3518a7950f3d1d57edb0a5d346c28bccade6fb61.tar.bz2 |
check-in of old updates
Diffstat (limited to 'docs')
-rw-r--r-- | docs/RELNOTES-3.5 | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/docs/RELNOTES-3.5 b/docs/RELNOTES-3.5 index f986560..bb44f1e 100644 --- a/docs/RELNOTES-3.5 +++ b/docs/RELNOTES-3.5 @@ -144,6 +144,15 @@ All the drivers have been updated, but not all of them have been tested since I can't test some platforms (DOS, Windows, Allegro, etc). +X/Mesa Driver +------------- + +The source files for the X/Mesa driver in src/X have been renamed. +The xmesa[1234].c files are gone. The new files are xm_api.c, +xm_dd.c, xm_line.c, xm_span.c and xm_tri.c. + + + Multitexture ------------ @@ -182,5 +191,21 @@ interface structures like __GLimports and __GLexports. 5. New file: imports.c to setup default import functions for Mesa. + + +Internal color values +--------------------- + +Previously, Mesa treated color channel values as GLubytes in [0,255]. +Mesa 3.5 uses the GLchan datatype for color channel values. In the +future it will be possible to define GLchan to be larger than a byte +in order to support high-precision colors. + +Many, many occurances of GLubyte have been replaced with GLchan +and many occurances of the number 255 have been replaced with CHAN_MAX. + +Support for CHAN_BITS > 8 is not ready yet but will be eventually. + + ---------------------------------------------------------------------- -$Id: RELNOTES-3.5,v 1.10 2001/03/26 19:45:08 brianp Exp $ +$Id: RELNOTES-3.5,v 1.11 2001/04/20 02:34:12 brianp Exp $ |