summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* added GL_IBM_rasterpos_clip extensionBrian Paul2001-06-268-18/+116
|
* added missing GLX_PBUFFER_WIDTH/HEIGHT tokensBrian Paul2001-06-251-1/+3
|
* Modified Files:mesa_3_5Jouk Jansen2001-06-211-9/+0
| | | | | | | | Mesa/src/descrip.mms Removed obsolete .obj files. ----------------------------------------------------------------------
* bumped version numbersBrian Paul2001-06-203-10/+10
|
* also print GL_MAX_TEXTURE_SIZEBrian Paul2001-06-201-2/+8
|
* updates for the 3.5 releaseBrian Paul2001-06-203-10/+15
|
* removed beta from version stringBrian Paul2001-06-201-2/+2
|
* added a few missing si-glu filesBrian Paul2001-06-191-1/+4
|
* add m4/ directory to tar file listBrian Paul2001-06-191-1/+2
|
* more updates to tar file lists for 3.5Brian Paul2001-06-191-25/+58
|
* fix glDraw/CopyPixels w/ fog bug. minor fog code clean-ups.Brian Paul2001-06-186-42/+128
|
* tar file list updates for 3.5Brian Paul2001-06-181-218/+220
|
* replaced -g with -O3 under linux-x86Brian Paul2001-06-181-2/+2
|
* Consolidated source files. Since the re-org a number of source filesBrian Paul2001-06-1818-157/+900
| | | | only had one or two functions left in them.
* Added fi_type union typedef to glheader.h.Brian Paul2001-06-154-58/+70
| | | | | Replace various float/int casts with the fi_type union cast. Fixes -fstrict-aliasing problems.
* Enable GL_ARB_texture_compression for XMesa/GLX driver. TextureBrian Paul2001-06-1510-49/+283
| | | | | compression isn't really implmented. Just updated glTexImageXD() to accept compressed internal format tokens.
* replace 255 with CHAN_MAXBrian Paul2001-06-151-7/+7
|
* define both GL_ALL_CLIENT_ATTRIB_BITS and GL_CLIENT_ALL_ATTRIB_BITS (spec ↵Brian Paul2001-06-141-2/+2
| | | | and SI don't agree)
* fixed a commentBrian Paul2001-06-141-2/+2
|
* disabled an assertion that doesn't seem to be neededBrian Paul2001-06-131-1/+3
|
* Allow different max texture sizes for 1/2D, 3D and cube maps.Brian Paul2001-06-139-66/+186
|
* fixed an assertionBrian Paul2001-06-131-2/+2
|
* fixed a +/- typo in the Y coord setupBrian Paul2001-06-131-4/+4
|
* moved glTexEnvi calls to better logical locationsBrian Paul2001-06-131-9/+8
|
* removed old, redundant CurrentTransformUnit state varBrian Paul2001-06-125-70/+56
|
* always feedback unit 0 texcoordsBrian Paul2001-06-121-2/+2
|
* don't compile glClientActiveTextureARB() into display lists, per the specBrian Paul2001-06-121-24/+10
|
* disable pixel transfer ops for glGetTexImage(), per the specBrian Paul2001-06-121-85/+6
|
* added latest line and triangle bug fixesBrian Paul2001-06-121-1/+3
|
* Snap triangle x,y vertices to 1/16 subpixel positions.Brian Paul2001-06-121-35/+56
| | | | Disabled tiny triangle threshold test.
* check for PB overflow in general_flat_rgba_line()Brian Paul2001-06-111-3/+10
|
* fixed minor display list bugs (#431517)Brian Paul2001-06-111-10/+10
|
* Committing in .Jouk Jansen2001-06-111-1/+2
| | | | | | | | | | Modified Files: Mesa/src/macros.h Added #define COPY_4UBV() for non i386 machines ----------------------------------------------------------------------
* add check for NULL malloc (from Stanford metacompilation analysis)Brian Paul2001-06-081-1/+4
|
* added COPY_4UBV bug fixBrian Paul2001-06-081-1/+2
|
* only copy GLubyte[4] as a GLuint on x86Brian Paul2001-06-081-16/+8
|
* use unoptimized COPY_4UBV code on SPARC to avoid memory alignment problems ↵Brian Paul2001-06-081-2/+11
| | | | (bug 430689)
* Remove dependency on MESA sources from gl* filesdavem692001-06-065-18/+38
| | | | | | | in SPARC glapi optimizations by moving the icache flush into the glapi_sparc.S file. Brian, how is this?
* test for X86_FXSR_MAGIC to be sure we have the _fpstate.magic field, needed ↵Brian Paul2001-06-061-5/+5
| | | | for SSE signal handler
* SPARC normal tnl optimizations.davem692001-06-063-2/+644
|
* Sparc optimized GLAPI dispatch table.davem692001-06-059-1414/+1511
|
* Generate this now that I know whichdavem692001-06-051-0/+11622
| | | | gl.spec file to use.
* minor clean-upsBrian Paul2001-06-051-11/+10
|
* filled in a bunch of the function template stringsBrian Paul2001-06-051-78/+78
|
* Python script for making glapi_sparc.Sdavem692001-06-051-0/+152
| | | | | | Unused until Brian shows me what gl.spec file he is actually using for glapi_x86.S as all the ones I can find seem out of sync.
* Add USE_SPARC_ASM diagnostics to print_info.davem692001-06-051-1/+6
|
* removed some code in XMesaDestroyContext() which could lead to a segfaultBrian Paul2001-06-041-6/+9
|
* Adaptor code that lets tnl convert compiled (display list) cassettes backKeith Whitwell2001-06-047-112/+305
| | | | | | | to glVertex() type calls. Allows driver-supplied tnl modules to avoid fallback on glCallList inside begin/end pairs. Still a little buggy...
* fixed some GL_POINTS probsKeith Whitwell2001-06-041-26/+42
|
* New files to provide glEvalPoint, glEvalCoord implementations forKeith Whitwell2001-06-042-0/+367
| | | | driver tnl modules.