summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/glide
Commit message (Collapse)AuthorAgeFilesLines
* partial GL_BLEND for Voodoo1Daniel Borca2004-07-211-6/+16
|
* 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
|
* 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
|
* use tnl_emit_func, it's saferDaniel Borca2004-07-061-2/+2
|
* added GL_ARB_point_sprite.Daniel Borca2004-07-055-44/+119
| | | | | color masking correctly implemented for 15bpp. small fixes for textures and tri engine.
* added GL_EXT_fog_coord.Daniel Borca2004-07-027-39/+343
| | | | | added GL_EXT_blend_equation_separate. minor cleanup.
* Rename the various function types in t_context.h to include a tnl_ prefix.Keith Whitwell2004-07-012-6/+6
|
* hack for compressed textures with aspectratio greater than 8:1Daniel Borca2004-06-244-53/+66
|
* Hack for linear fogging. Added empty routines for WGL_ARB_pixel_format ↵Daniel Borca2004-06-195-16/+139
| | | | WGL_ARB_render_texture WGL_ARB_pbuffer
* Fixed a bug in vertex emitter (untile we move to t_vertex.c)Daniel Borca2004-06-141-2/+7
|
* remove the 3dfx CatchSignals stuff (the var was alwasy set)Brian Paul2004-06-111-1/+1
|
* corrected a bug wrt point_sizeDaniel Borca2004-06-082-11/+57
|
* masked out unsupported glBlendColor (some games check only the proc addr)Daniel Borca2004-06-036-9/+11
|
* reworked FXT1Daniel Borca2004-05-313-8/+13
| | | | minor fixes to fxMesa
* doc update; minor changesDaniel Borca2004-05-201-5/+9
|
* added GL_NV_blend_squareDaniel Borca2004-05-193-82/+57
| | | | | fixed alpha blending modes for Napalm minor fix in compressed texture aspectratio adjust
* added some core-level extensionsDaniel Borca2004-05-181-0/+2
|
* minor fixesDaniel Borca2004-05-122-7/+3
|
* fixed bugs in fxddtex.cDaniel Borca2004-05-104-214/+260
| | | | cleaned up win32 definition files
* texture compression: getting warmerDaniel Borca2004-05-041-7/+9
|
* FXT1: getting warmerDaniel Borca2004-04-302-145/+68
|
* FXT1 preparationsDaniel Borca2004-04-292-53/+97
|
* accomodate newtexstoreDaniel Borca2004-04-263-72/+112
| | | | fixed wgl interface for fxMesa
* documentation updatesDaniel Borca2004-04-143-6/+16
| | | | Glide3 driver: POINTCAST palette fixes
* code cleanup hehehDaniel Borca2004-03-298-113/+96
|
* small changes (version string)Daniel Borca2004-03-252-8/+9
|
* Implemented support for software-based AUX color buffers.Brian Paul2004-03-212-5/+6
| | | | | | Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc.
* fxMesa: remove buffer_obj_ext, cos it breaks UT2004Daniel Borca2004-03-091-1/+2
|
* Voodoo Rush fixesDaniel Borca2004-03-083-5/+17
|
* _tnl_allow_*_fog(...)Daniel Borca2004-03-031-0/+2
|
* workaround for crash-upon-exit in verbose modeDaniel Borca2004-03-022-42/+73
| | | | | fxMesa now uses grQueryResolution minor fixes to X11 and DOS drivers
* replace color table FloatTable boolean with Type enumBrian Paul2004-02-281-1/+1
|
* cleanup and some WGL PIXELFORMAT issuesDaniel Borca2004-02-167-120/+104
|
* fixed back fxMesaGetCurrentContext to match MakeCurrentDaniel Borca2004-02-102-4/+3
|
* deal with combine_ext refactorDaniel Borca2004-02-093-65/+74
|
* added NUL driver for DMesaDaniel Borca2004-02-071-63/+71
|
* fixed a bug in GL_NEAREST samplerDaniel Borca2004-02-021-15/+0
|
* GL_TEXTURE_1D and other stories...Daniel Borca2004-01-297-33/+109
|
* Added support for EXT_blend_equation_separate / ATI_blend_equation_separate.Ian Romanick2004-01-274-11/+12
| | | | | The internal driver interface was also changed to use BlendEquationSeparate instead of BlendEquation.
* Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a singleKeith Whitwell2004-01-274-16/+16
| | | | array, texObj->Image[face][level].
* accomodate FetchTexel and fix some memory leak bugsDaniel Borca2004-01-265-59/+24
|
* accomodated new driver_func initializationDaniel Borca2004-01-236-35/+20
| | | | | | added DMesaGetProcAddress some other minor fixes updated documentation
* Remove dd_function_table::BlendFunc. All drivers now useIan Romanick2004-01-213-8/+0
| | | | | | dd_function_table:BlendFuncSeparate. If a driver does not actually support EXT_blend_func_separate, it can assume that the RGB and alpha blend functions are the same.
* Undo some bits from last check-in related to the ctx->Driver.NewTextureObjectBrian Paul2004-01-201-37/+67
| | | | | functions. Don't allocate the driver-specific data during texture object creation but do it later as needed (as code originally was).
* Before calling _mesa_create_context(), initialize a dd_function_table structBrian Paul2004-01-203-74/+65
| | | | | | | | | | by calling _mesa_init_driver_functions() and then plugging in the driver- specific functions. In particular, make sure ctx->Driver.NewTextureObject points to the appropriate driver function so that _all_ texture objects are augmented with the driver-specific data. Put in a bunch of assertions in the texture-related driver functions that texObj->DriverData is valid. Remove old dead code in near future.
* _mesa_delete_texture_object and some other updatesDaniel Borca2004-01-154-10/+12
|
* fixed a bug in texture memory manager when in UMA modeDaniel Borca2004-01-142-6/+13
|