summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/tdfx
Commit message (Collapse)AuthorAgeFilesLines
* semantic in parameter namesDaniel Borca2005-01-061-3/+3
|
* semantic in parameter namesDaniel Borca2005-01-061-1/+1
|
* removed detritusDaniel Borca2005-01-061-12/+0
|
* added "default" branch in `convertPalette'Daniel Borca2005-01-061-5/+4
|
* fix dstRGB factorDaniel Borca2005-01-061-3/+3
|
* fix build problemAlan Hourihane2005-01-051-1/+1
|
* Unused variable cleanup.Adam Jackson2004-12-271-2/+1
|
* fxRasterPrimitive wasn't always receiving the reduced primitiveDaniel Borca2004-12-171-16/+15
|
* Also PUBLICize the config option tableAdam Jackson2004-12-161-1/+1
|
* Mark __driCreateNewScreen PUBLICAdam Jackson2004-12-151-0/+1
|
* uint*t -> u_int*t changesAlan Hourihane2004-12-143-2/+6
|
* Remove _mesa_ResizeBuffersMESA() call from _mesa_set_viewport().Brian Paul2004-11-272-4/+3
| | | | | | | | Now, the driver's Viewport routine should call _mesa_ResizeBuffersMESA() if necessary. Cleaned up code related to GLframebuffer width/height initialization. Set initial viewport/scissor params in _mesa_make_current2(), instead of in the drivers' MakeCurrent functions.
* GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpackingBrian Paul2004-11-101-14/+14
| | | | | | | and ignored for 1D and 2D images. Need to pass in image dimensions (1,2,3) to the _mesa_image_address() function. This change gets propogated to some other routines. Also added new _mesa_image_address[123]d() convenience functions.
* fix compilation error in `convertPalette' (still have to fix the issue, though)Daniel Borca2004-10-191-2/+4
|
* print an error message in convertPalette before dying.Daniel Borca2004-10-181-0/+3
| | | | this is NOT a fix, but it'll have to wait a little...
* small fix to match new _mesa_rescale_teximage2dDaniel Borca2004-10-181-0/+2
|
* Fix compile errors when DEBUG is defined.Ian Romanick2004-10-181-3/+3
|
* Bug #1588: abort if no palette format matches. (Egbert Eich, Stefan Dirsch)Adam Jackson2004-10-131-0/+1
|
* Convert tdfxDDInitExtensions to use driInitExtensions.Ian Romanick2004-10-061-43/+55
|
* stencil wrap works, either HW or SW (Ian Romanick)Daniel Borca2004-10-051-4/+1
|
* added support for GL_ARB_draw_buffersBrian Paul2004-10-024-10/+10
|
* cleaned up extensions a bitDaniel Borca2004-08-301-3/+2
|
* clamp lodbiasDaniel Borca2004-08-301-1/+1
|
* fixed automatic mipmap generationDaniel Borca2004-08-301-8/+63
|
* fog really needs WDaniel Borca2004-08-301-0/+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
|
* several new bugsDaniel Borca2004-07-1912-1016/+1521
|
* fixed vertex RGBADaniel Borca2004-07-131-1/+1
|
* Convert miniglx to use Ian's fancy new driver config code.Jon Smirl2004-07-051-54/+0
| | | | | This removes the miniglx driver function InitContextModes(). All of the server directories were edited to remove the implementations.
* Patch removes _SOLO definition needed for mesa-solo. mesa-soloJon Smirl2004-07-041-10/+0
| | | | | uses the NEW_INTERFACE now so _SOLO isn't necessary anymore. Tested with the hardware that I own.
* Rename the various function types in t_context.h to include a tnl_ prefix.Keith Whitwell2004-07-012-6/+6
|
* Rename 'emit_func' usages in drivers. Will also rename the ones inKeith Whitwell2004-07-011-2/+2
| | | | t_context.h.
* check for NULL pointer to glTexImage (fix verified by Adam Jackson)Brian Paul2004-06-221-20/+27
|
* fix correct parameters passed to StoreImageDaniel Borca2004-06-151-2/+2
|
* _really_ fix parameters to StoreImage calls.Adam Jackson2004-06-141-2/+2
|
* silence a warningAdam Jackson2004-06-101-0/+1
|
* The required DDX and DRI version numbers were switched. This went unnoticedIan Romanick2004-06-071-2/+2
| | | | | on several drivers (i.e., R200, Radeon, R128, Unichrome) becuase the required DRI and DDX versions were 4.0.0. Mach64 was already fixed.
* Open/Close FullScreen die. unichrome and savage implemented, code is ifdef'd outJon Smirl2004-06-031-9/+0
|
* driCheckDriDdxDrmVersion uses a function that is not available toIan Romanick2004-06-021-28/+10
| | | | | | | | | | | | | | | drivers when DRI_NEW_INTERFACE_ONLY is defined. #ifndef it away in that situation. Add a new function, driCheckDriDdxDrmVersion2, that is passed in the version information that is already supplied to __driCreateNewScreen. Part of the reason that information is supplied to __driCreateNewScreen is so that the driver doesn't have to make those calls to get it! Modify all drivers that support the new interface to use the new function instead of the old. As soon as all drivers support the new interface, driCheckDriDdxDrmVersion can be removed.
* Removed need for sarea.h, various touch ups to get rid of type mismatches.Jon Smirl2004-06-021-0/+1
|
* Replace drmHandle, drmContext, drmDrawable, drmMagic and related types withIan Romanick2004-06-024-4/+4
| | | | drm_handle_t, drm_context_t, drm_drawable_t, drm_magic_t.
* Fix dumb mistake from a previous commit. __driCreateScreen is nowIan Romanick2004-06-011-1/+3
| | | | properly block with '#ifndef DRI_NEW_INTERFACE_ONLY'.
* Convert 'Display *' to '__DRInativeDisplay *'. Only portions of theIan Romanick2004-06-011-2/+2
| | | | | | | | interface that are not *strictly* part of the old interface were changed. Replace GetDrawableInfo type (dri_util.h) with PFNGLXGETDRAWABLEINFOPROC (dri_interface.h). Wrap __driCreateScreen (in drivers that use the new interface) with '#ifndef DRI_NEW_INTERFACE_ONLY'.
* use new interface for tdfx (phase 2)Adam Jackson2004-05-281-0/+123
|
* Move dri_util.[ch] and glcontextmodes.[ch] from dri_client to common.Ian Romanick2004-05-271-1/+3
|
* fix parameters to StoreImage()Brian Paul2004-05-131-2/+2
|
* fix parameters to StoreImage callsBrian Paul2004-05-121-2/+2
|
* remove last remnants of NEWTEXSTORE stuffBrian Paul2004-05-121-22/+0
|
* obsolete in favor of regular MakefilesBrian Paul2004-05-121-129/+0
|