Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New _mesa_debug() function to replace fprintf() calls. | Brian Paul | 2002-06-13 | 10 | -36/+50 |
| | | | | | | | | Some source files updated to call _mesa_debug(), but not finished. Added __GLimports as a parameter to _mesa_create/init_context() and updated drivers accordingly. Fleshed-out more of the __GLimports and __GLexports functionality. Removed run-time config file support (config.c) | ||||
* | GGI driver updates (Filip Spacek) | Brian Paul | 2002-06-10 | 5 | -645/+797 |
| | |||||
* | replaced 0xf and 0xf0 with TEXTURE0_ANY and TEXTURE1_ANY | Brian Paul | 2002-06-06 | 1 | -4/+4 |
| | |||||
* | more big-endian tweaks | Brian Paul | 2002-06-05 | 1 | -3/+3 |
| | |||||
* | bring over Michel Daenzer's DRI changes | Brian Paul | 2002-06-03 | 2 | -23/+25 |
| | |||||
* | some initial work for fbconfigs/pbuffers | Brian Paul | 2002-05-27 | 3 | -17/+30 |
| | |||||
* | Apply alpha buffer control fix to accum buffer too. | Karl Schultz | 2002-04-23 | 1 | -2/+3 |
| | |||||
* | Fix up alpha buffer handling for Windows. | Karl Schultz | 2002-04-23 | 2 | -6/+36 |
| | | | | | | | | | - add two new Pixel Format Descriptors that do not have alpha bits to mirror the two that do. - add logic to wglChoosePixelFormat to match PFD's with respect to alpha. - Create/clear software alpha buffer as required. Now a wgl or GLUT program can control the creation of a software alpha buffer via the PFD or GLUT parms, respectively. | ||||
* | Allocate a sw_span struct in the swrast context instead of allocating it | Brian Paul | 2002-04-19 | 2 | -241/+241 |
| | | | | | on the stack frame in the point/line/triangle functions. (Klaus Niederkrueger) This should solve the performance problem Karl found on Windows. | ||||
* | C++ fix | Brian Paul | 2002-04-19 | 1 | -1/+5 |
| | |||||
* | added OSMesaGetProcAddress() | Brian Paul | 2002-04-04 | 1 | -1/+34 |
| | |||||
* | call _mesa_ResizeBuffersMESA() in OSMesaMakeCurrent() to reconcile buffer ↵ | Brian Paul | 2002-04-04 | 1 | -2/+7 |
| | | | | size changes | ||||
* | return NULL from Fake_glXCreateContext() if dpy or visinfo are NULL | Brian Paul | 2002-04-02 | 1 | -1/+5 |
| | |||||
* | DOS driver update | Brian Paul | 2002-04-01 | 5 | -27/+48 |
| | |||||
* | use _glapi_get_context() instead of GET_CURRENT_CONTEXT(ctx); in buffer_size() | Brian Paul | 2002-03-29 | 1 | -2/+3 |
| | |||||
* | DOS/Mesa driver updates (Daniel Borca) | Brian Paul | 2002-03-23 | 3 | -13/+8 |
| | |||||
* | don't set plane mask for xm_buffer->gc, it causes an accum buffer ↵ | Brian Paul | 2002-03-19 | 1 | -3/+1 |
| | | | | conformance problem | ||||
* | Lots of changes related to framebuffer/window buffer resizing. Basically, | Brian Paul | 2002-03-16 | 8 | -86/+114 |
| | | | | | | | instead of passing a GLcontext* to ResizeBuffers(), pass a GLframebuffer*. The idea is that a window can be resized without it being bound to a rendering context. This makes for a nice clean-up in the XFree86 server-side GLX code. Renamed ctx->Driver.ResizeBuffersMESA() to ctx->Driver.ResizeBuffers(). | ||||
* | protect currentReadable reference with #ifndef GLX_BUILT_IN_XMESA | Brian Paul | 2002-03-15 | 1 | -3/+4 |
| | |||||
* | updated comments. removed dead code. | Brian Paul | 2002-03-15 | 2 | -146/+17 |
| | |||||
* | remove a debug printf | Brian Paul | 2002-03-15 | 1 | -2/+1 |
| | |||||
* | Removed the xm_context field from XMesaBuffer. It was preventing N threads | Brian Paul | 2002-03-12 | 2 | -65/+7 |
| | | | | from rendering into one window in parallel and wasn't really needed anyway. | ||||
* | obsolete | Brian Paul | 2002-03-11 | 6 | -2377/+0 |
| | |||||
* | DOS driver updates from Daniel Borca | Brian Paul | 2002-03-08 | 1 | -105/+68 |
| | |||||
* | new DOS driver files from Daniel Borca | Brian Paul | 2002-03-08 | 7 | -0/+2318 |
| | |||||
* | silence gcc warnings (Marc La France) | Brian Paul | 2002-03-01 | 3 | -7/+14 |
| | |||||
* | updated comments for CHAN_BITS=16 or 32 | Brian Paul | 2002-03-01 | 1 | -9/+7 |
| | |||||
* | DOS updates from Daniel Borca | Brian Paul | 2002-02-23 | 1 | -106/+457 |
| | |||||
* | check for initialized XMesaBuffer in XMesaGarbageCollect() | Brian Paul | 2002-02-20 | 1 | -2/+2 |
| | |||||
* | use separate GC for SwapBuffers to avoid colormask problem | Brian Paul | 2002-02-15 | 3 | -19/+30 |
| | |||||
* | obsolete | Brian Paul | 2002-02-15 | 2 | -1661/+0 |
| | |||||
* | updated GL_VENDOR string | Brian Paul | 2002-02-14 | 1 | -4/+4 |
| | |||||
* | More suport for t&l drivers | Keith Whitwell | 2002-02-13 | 2 | -30/+40 |
| | | | | | Fix GLuint compare bugs Fix RESET_STIPPLE calls | ||||
* | Daniel Borca's new DOS/DJGPP driver. | Brian Paul | 2002-02-12 | 4 | -0/+1499 |
| | |||||
* | return GL_RENDERER = Mesa Offscreen16/32 when CHAN_BITS = 16 or 32 | Brian Paul | 2002-01-30 | 1 | -3/+9 |
| | |||||
* | Fixes for 24-bit Windows devices. The old code was trying to do 3-byte | Karl Schultz | 2002-01-16 | 1 | -5/+11 |
| | | | | stores with a full DWORD store (yuk). (Jeff Lewis) | ||||
* | Fixed pixel color component problem and clear code for 24-bit Windows | Karl Schultz | 2002-01-15 | 2 | -159/+179 |
| | | | | devices. (Jeff Lewis) | ||||
* | Remove trailing CR's. No logical changes. | Karl Schultz | 2002-01-15 | 1 | -478/+487 |
| | |||||
* | Fix clipping problem on mga | Keith Whitwell | 2001-12-20 | 1 | -3/+3 |
| | |||||
* | first checkpoint commit of Klaus's new span code (struct sw_span) | Brian Paul | 2001-12-17 | 2 | -50/+49 |
| | |||||
* | fix for ubyte colors | Keith Whitwell | 2001-12-13 | 1 | -14/+14 |
| | |||||
* | fix glut tess lockup | Keith Whitwell | 2001-12-11 | 1 | -8/+3 |
| | |||||
* | main trunk is now 4.1 | Karl Schultz | 2001-11-29 | 1 | -1/+1 |
| | |||||
* | update to version 4.0 | Karl Schultz | 2001-11-29 | 1 | -1/+1 |
| | |||||
* | casts to silence warnings from gcc 2.96 | Brian Paul | 2001-11-06 | 3 | -6/+6 |
| | |||||
* | Updates for improved DirectDraw support (Daniel Slater) | Karl Schultz | 2001-11-01 | 2 | -65/+514 |
| | |||||
* | version bumps, etc for 4.1 | Brian Paul | 2001-10-22 | 1 | -3/+3 |
| | |||||
* | Fix the clear() function | Karl Schultz | 2001-10-05 | 1 | -80/+98 |
| | | | | | | | | - add checks for the ColorMask and IndexMask (like osmesa) - correctly handle the DD_*_BIT flags so that we don't also ask the swrast to clear the color buffer after we cleared it ourselves. (doh!) This gives nearly a 2X improvement in the frame rate in a program like gears. | ||||
* | Updated Windows driver for Mesa 4.0. | Karl Schultz | 2001-10-04 | 1 | -1555/+1427 |
| | | | | Needs optimization. | ||||
* | remove extra CR chars | Karl Schultz | 2001-10-04 | 2 | -194/+194 |
| |