summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers
Commit message (Collapse)AuthorAgeFilesLines
* Stupid me. I don't know why I moved the GLView.h here at first, but now I ↵Philippe Houdoin2004-08-162-193/+1
| | | | | | | | | | | know why I shouldn't: Official BeOS GLView.h defines a virtual ErrorCallback(GLenum) method, assuming a unsigned long GLenum. But under Mesa, GLenum is unsigned int. To keep binary compatibility, BeOS apps including Mesa GL/gl.h MUST include *our* GLView.h, or linker will report a missing ErrorCallback(unsigned int) symbol. Glup.
* cleanupDaniel Borca2004-08-165-37/+14
|
* fixed texture fetchers, fixed automatic mipmap generation, some cleanupDaniel Borca2004-08-161-22/+71
|
* fixed pixel drawing routines, some cleanupDaniel Borca2004-08-161-8/+142
|
* disabled stereo checking in wglChoosePixelFormatDaniel Borca2004-08-161-0/+5
|
* Remove unused HAVE_INDEX define.Eric Anholt2004-08-162-2/+0
|
* Update Visual Studio Project file for src tree updates.Karl Schultz2004-08-141-2/+2
|
* Forgot to commit this valuable file! :-)Philippe Houdoin2004-08-141-0/+195
|
* Fix a bug that set RGBA bits length always to 0 (reported by Marcin Konicki).Philippe Houdoin2004-08-142-211/+232
| | | | | | | | | PPC byte order now supported (thanks Nathan Whitehorn). Double buffering is now always forced. Unlock the BGLView looper only if needed. Should fix the GLUT-based apps crash at window closing. SwapBuffers() now can wait for next vertical retrace. And several other minor changes...
* build fix from XFree86 treeDave Airlie2004-08-141-1/+1
|
* bring over change from xorg trunk - let build on non-i386Dave Airlie2004-08-141-1/+1
|
* bring over build fix from xorg treeDave Airlie2004-08-141-0/+4
|
* Fix dri_util.c build with new headers.Eric Anholt2004-08-121-1/+1
| | | | Submitted by: John Lightsey <john@nixnuts.net>
* fix incorrect overflow detection when emitting R200_SS_MAT_1_SHININESSRoland Scheidegger2004-08-031-1/+1
|
* xorg-r200-uninitialized-variable-used.patch from Redhat xorgDave Airlie2004-07-311-1/+2
|
* disabled automatic mipmaps until we can handle 565 textures.Daniel Borca2004-07-291-0/+2
|
* fixed conflict between depth & alpha in 16bppDaniel Borca2004-07-291-1/+1
|
* disable W1 when single-texturingDaniel Borca2004-07-261-6/+6
|
* Fixed hash table allocation to avoid an assertion failure due to aFelix Kuehling2004-07-261-5/+9
| | | | bad config file. Fixed two more typos.
* Rush is back on ZBUFFERDaniel Borca2004-07-261-49/+354
| | | | added DrawPixels555 and DrawPixels565
* use GL_CALL() macro (Andreas Stenglein)Brian Paul2004-07-241-20/+20
|
* new MESA_GLX_DEPTH_BITS env varBrian Paul2004-07-231-5/+26
|
* added support for MESA_GLX_FORCE_ALPHA env varBrian Paul2004-07-231-0/+4
|
* fixed pixelpiped DrawBitmap / DrawPixels (clipping was upside-down)Daniel Borca2004-07-231-31/+28
|
* partial GL_BLEND for Voodoo1Daniel Borca2004-07-211-6/+16
|
* fixed a bug in clear routineDaniel Borca2004-07-211-4/+3
|
* fix compare w/ zero warnings (bug 988766)Brian Paul2004-07-201-1/+1
|
* GL_EXT_texture_env_add shouldn't be conditioned by multitex, or should it?Daniel Borca2004-07-201-1/+1
|
* trying vertex_program...Daniel Borca2004-07-191-1/+4
|
* several new bugsDaniel Borca2004-07-1912-1016/+1521
|
* minor correctionsDaniel Borca2004-07-162-17/+36
|
* GL_MODULATE/GL_REPLACE multitex (wasteful, but apparently needed by some apps)Daniel Borca2004-07-161-0/+34
|
* SGIS_generate_mipmapDaniel Borca2004-07-161-77/+188
|
* add debugging for compresssed texturesDave Airlie2004-07-151-0/+7
|
* fix up heights for i830/i915 texture compressionDave Airlie2004-07-152-2/+18
|
* move config options to same place as other drivers (again for S3TC patch later)Dave Airlie2004-07-152-3/+3
|
* use a switch statement makes integrating the s3tc patch easierDave Airlie2004-07-151-1/+7
|
* enable FXT1 texture compression for ixxx chipsetsDave Airlie2004-07-155-1/+114
| | | | commented out Keiths extensions strings
* move over changes to intel driver from i830 driver for modesDave Airlie2004-07-151-88/+25
|
* fixed vertex RGBADaniel Borca2004-07-131-1/+1
|
* Make solo radeon/r128 drivers track fix for DRI bug 849Jon Smirl2004-07-102-28/+12
|
* Remove DRM_PAGE_SIZE from fb and i810 drivers since it was being used.Jon Smirl2004-07-102-21/+0
|
* Fix unichrome solo build to not need X11 headers. Minor change toJon Smirl2004-07-101-10/+3
| | | | use mesa_alloc/free.
* Make GET_PROGRAM_NAME work with uCLibc using the __progname hack.Felix Kuehling2004-07-101-4/+9
| | | | Improved that hack to remove leading directory names.
* Fix mesa-solo config to define _GNU_SOURCE so that program_invocation_short_nameJon Smirl2004-07-091-1/+0
| | | | will be correctly defined.
* use tnl_emit_func, it's saferDaniel Borca2004-07-061-2/+2
|
* Convert miniglx to use Ian's fancy new driver config code.Jon Smirl2004-07-057-257/+1
| | | | | This removes the miniglx driver function InitContextModes(). All of the server directories were edited to remove the implementations.
* added GL_ARB_point_sprite.Daniel Borca2004-07-055-44/+119
| | | | | color masking correctly implemented for 15bpp. small fixes for textures and tri engine.
* Bugzilla #755: Fix polygon offset by setting DEPTH_SCALE to depth_scale insteadEric Anholt2004-07-041-1/+1
| | | | of 1.0.
* Patch removes _SOLO definition needed for mesa-solo. mesa-soloJon Smirl2004-07-0424-307/+16
| | | | | uses the NEW_INTERFACE now so _SOLO isn't necessary anymore. Tested with the hardware that I own.