aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Catch and shortcircuit no-primitive and no-vertex cases in _tnl_wrap_buffers()Keith Whitwell2004-01-271-21/+38
|
* Add new driverfuncs.Karl Schultz2004-01-272-0/+9
|
* Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a singleKeith Whitwell2004-01-2735-455/+379
| | | | array, texObj->Image[face][level].
* remove bogus assertion in DeleteTexture() functionBrian Paul2004-01-266-7/+0
|
* Make the drivers using the common texmem code work with NewTextureObjectFelix Kuehling2004-01-2610-41/+15
| | | | | in Mesa. This is analogous to changes idr made to the r200 driver. Patch submitted by Andreas Stenglein.
* Fix for recursion in generic_copy_pv_extras.Keith Whitwell2004-01-261-2/+5
| | | | Add a comment.
* replace MALLOC w/ CALLOC to silence valgrind warningsBrian Paul2004-01-261-1/+1
|
* minimize the number of DIVsDaniel Borca2004-01-261-3/+3
|
* glutTimerFunc cleanupDaniel Borca2004-01-264-121/+132
|
* accomodate FetchTexel and fix some memory leak bugsDaniel Borca2004-01-265-59/+24
|
* New error checking in _mesa_GetTexImage().Brian Paul2004-01-242-26/+85
| | | | Updated comments and some better function parameter names.
* Some initial RGB and RGBA floating point texture formats.Brian Paul2004-01-243-53/+216
|
* Parse radeon, not r200 configuration in radeonCreateContext.Felix Kuehling2004-01-241-1/+1
|
* Fix hardware ROP state handling (Roland Scheidegger)Michel Dänzer2004-01-242-6/+6
|
* added device driver hooks for BindProgram, NewProgram, DeleteProgramBrian Paul2004-01-235-18/+55
|
* Change software alpha plane pointers from void* to GLchan*, eliminate some ↵Brian Paul2004-01-232-19/+18
| | | | casts.
* more fixing for tdfxUpdateTexturePaletteBrian Paul2004-01-233-9/+3
|
* a few more tweaksBrian Paul2004-01-231-7/+1
|
* fix assorted compilation issuesBrian Paul2004-01-232-7/+9
|
* accomodated new driver_func initializationDaniel Borca2004-01-239-137/+103
| | | | | | added DMesaGetProcAddress some other minor fixes updated documentation
* Don't set extra bits in FLUSH_VERTICES, fix several state bugs.Keith Whitwell2004-01-238-50/+30
|
* Committing in .Jouk Jansen2004-01-234-152/+152
| | | | | | | | | | | Trying to remove the <CR> at the end of each line. Modified Files: Mesa/src/mesa/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms ----------------------------------------------------------------------
* Modified error messages in _mesa_BlendFuncSeparateEXT to note that theIan Romanick2004-01-231-8/+8
| | | | | same function is used internally for glBlendFunc and glBlendFuncSeparate.
* Call UpdateMaterial() unconditionally on GL_COLOR_MATERIAL state changeMichel Dänzer2004-01-232-20/+14
| | | | | | (Roland Scheidegger), and update lighting state unconditionally there. Fixes lighting oddities in the xscreensaver endgame hack, bzflag and possibly elsewhere.
* Fix attenuation hardware state handling, inspired by the R200 DDK referenceMichel Dänzer2004-01-236-18/+74
| | | | | driver (our r200 driver basically didn't do this at all, maybe got lost along the way?)
* Initial support for floating point and signed texture formats.Brian Paul2004-01-238-403/+898
| | | | | | | New "FetchTexelFuncF()" function returns texels in floating point format. Only used for depth component images at this time. Changed original FetchTexelFunc to return GLchan instead of GLvoid, removing need for a bunch of ugly casts.
* Minor tweaks to help out at a driver level.Keith Whitwell2004-01-223-6/+19
|
* Corrected a comment about how the DOT3 hardware works in the R200.Ian Romanick2004-01-221-4/+4
|
* Committing in .Jouk Jansen2004-01-224-111/+152
| | | | | | | | | | | | Updated OpenVMS compile support Modified Files: Mesa/Makefile.X11 Mesa/src/mesa/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Added Files: Mesa/src/mesa/drivers/common/descrip.mms ----------------------------------------------------------------------
* Silence some compiler warnings.Ian Romanick2004-01-216-11/+11
|
* Make the R200 driver work with the NewTextureObject in Mesa. OtherIan Romanick2004-01-212-9/+9
| | | | drivers that use the texmem interface will likely need similar changes.
* Silence a compiler warning DRI builds using gcc3.Ian Romanick2004-01-211-1/+1
|
* Use new EMIT_PAD functionality for spec and/or fog as available.Keith Whitwell2004-01-211-13/+42
| | | | Fix a couple of problems with texture emit.
* Remove dd_function_table::BlendFunc. All drivers now useIan Romanick2004-01-2117-318/+50
| | | | | | 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.
* Another mechanism to create vertices with holes - a new EMIT_PAD styleKeith Whitwell2004-01-212-17/+34
|
* don't call glVertex functions directly, call _glapi_Dispatch->Vertex(), etcBrian Paul2004-01-211-20/+20
|
* remove _mesa_check_driver_hooks() - it's really not too useful anymoreBrian Paul2004-01-203-68/+20
|
* Undo some bits from last check-in related to the ctx->Driver.NewTextureObjectBrian Paul2004-01-2015-276/+208
| | | | | functions. Don't allocate the driver-specific data during texture object creation but do it later as needed (as code originally was).
* fixed a bug in VGA initialization routineDaniel Borca2004-01-201-3/+19
|
* remove duplicate t_dd_* filesKeith Whitwell2004-01-2010-4733/+0
|
* Before calling _mesa_create_context(), initialize a dd_function_table structBrian Paul2004-01-2079-1225/+1178
| | | | | | | | | | 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_init_driver_functions() to initialize dd_function_tableBrian Paul2004-01-202-0/+238
|
* some more count vs. end confusionKeith Whitwell2004-01-192-11/+11
|
* replace -lm with $(GL_LIB_DEPS) to get -lexpatBrian Paul2004-01-192-2/+2
|
* replace CALLOC with MALLOC in _mesa_new_texture_object()Brian Paul2004-01-191-1/+1
|
* remove incorrect comments, added _mesa_bzero() call in ↵Brian Paul2004-01-191-12/+3
| | | | _mesa_initialize_texture_object()
* Migrate i830 driver to t_vertex.[ch] for building hw vertices.Keith Whitwell2004-01-1911-735/+156
|
* fix glitch from previous check-in (pointer vs int)Brian Paul2004-01-191-1/+1
|
* minor changes to silence warningsBrian Paul2004-01-185-5/+7
|
* Change get_ust_nop()'s parameter from int64_t to uint64_t to silence warnings.Brian Paul2004-01-185-5/+5
|