summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
Commit message (Collapse)AuthorAgeFilesLines
* Committing in .Jouk Jansen2003-12-091-1/+3
| | | | | | | | | Small VMS issue : sys/param.h is not available on all systems and not needed anyway. Modified Files: Mesa-newtree/src/mesa/main/vsnprintf.c ----------------------------------------------------------------------
* Update NEED_SECONDARY_COLOR macro to test if either vertex/fragmentBrian Paul2003-12-092-1/+21
| | | | | programs are enabled and if they need secondary color input register. Patch by Karl Rasche, with tweaks by Brian.
* kill a warningAlan Hourihane2003-12-081-1/+1
|
* Committing in .Jouk Jansen2003-12-081-0/+3
| | | | | | | | | | | | | OpenVMS compile issues Modified Files: Mesa-newtree/progs/tests/cva.c Mesa-newtree/progs/tests/dinoshade.c Mesa-newtree/progs/tests/multipal.c Mesa-newtree/src/mesa/main/descrip.mms Mesa-newtree/src/mesa/tnl/descrip.mms Mesa-newtree/src/mesa/tnl/t_vtx_api.c ----------------------------------------------------------------------
* conditionally define GLAPIENTRYP to prevent some warnings in linux-soloBrian Paul2003-12-061-1/+3
|
* fix compiler warningAlan Hourihane2003-12-051-7/+7
|
* remove duplicate declarationsAlan Hourihane2003-12-051-7/+0
|
* ChangeKarl Schultz2003-12-041-2/+2
| | | | | | | | | #define GLAPIENTRYP __stdcall * to #define GLAPIENTRYP GLAPIENTRY * These two defs end up doing the same thing, but the compiler can squawk because they look different. Also matches the way it is declared in gl.h. Do same for GLCALLBACKP.
* update filesKarl Schultz2003-12-041-6/+14
|
* Add missing GLAPIENTRYKarl Schultz2003-12-046-175/+175
|
* remove duplicate declarationAlan Hourihane2003-12-041-4/+0
|
* Port over changes from XFree86/Mesa 5.0.2, mostly to silence compiler warnings.Brian Paul2003-12-045-39/+20
|
* Fix some problems with glDrawElements and vertex buffer objects.Brian Paul2003-12-042-10/+41
|
* Remove things having to do with ARB_matrix_palette/ARB_vertex_blendKarl Rasche2003-12-021-16/+32
|
* s/texUnit->Enabled/enableBits/ (Karl Rasche)Brian Paul2003-11-301-5/+5
|
* Fixed compiler warningsKarl Rasche2003-11-301-6/+6
| | | | Assign the correct thing to TexturesUsed[]
* Fix generic/conventional vertex array glitches.Brian Paul2003-11-291-1/+1
| | | | | | | | Changed _NEW_ARRAY_ATTRIB_0 back to 0x10000 so that the conventional and generic enable bits do not alias. In ac_import.c test Array.Normal.Enabled instead of Array._Enabled & _NEW_ARRAY_COLOR0, etc. In t_array_import.c give priority for generic arrays over conventional arrays on an individual basis, not all or none.
* more tweaks to error checking and reportingBrian Paul2003-11-281-7/+8
|
* if id==0 in glGetQueryObject, raise GL_INVALID_OPERATIONBrian Paul2003-11-281-6/+9
|
* fix an error testBrian Paul2003-11-281-1/+1
|
* current raster color index should be GLfloatBrian Paul2003-11-255-14/+14
|
* fix assorted g++ warningsBrian Paul2003-11-252-7/+7
|
* casts for g++Brian Paul2003-11-254-5/+5
|
* fix a lot of warnings found with g++Brian Paul2003-11-251-66/+66
|
* remove __FUNCTION__ hackBrian Paul2003-11-251-11/+0
|
* added a castBrian Paul2003-11-251-1/+2
|
* Remove unnecessary usage of __FUNCTION__.Brian Paul2003-11-253-19/+21
| | | | #define MESA_FUNCTION to __FUNCTION__ if MESA_DEBUG is defined.
* - New version of the syntax rules from Michal KrolKarl Rasche2003-11-252-85/+62
| | | | | | + Handles '1' as a float, just like '1.' + Remove switch collision between vp and fp #defines + result.color.xyz no longer requires result.color.primary.xyz
* added support for generic vertex attributes (ARB_vp) and their error checkingKarl Rasche2003-11-252-7/+136
|
* fix YCBCR assertion and disable assertion in auto-mipmap codeBrian Paul2003-11-241-0/+3
|
* whitespace and comment changesBrian Paul2003-11-242-14/+11
|
* minor error string improvementBrian Paul2003-11-241-1/+3
|
* Merge vtx-0-2-branchKeith Whitwell2003-11-2417-1168/+1541
|
* - parse_alias() Was totally borkedKarl Rasche2003-11-232-34/+31
| | | | | - forgot a ++ in texSrcBit switch - copy/paste error in arbfragparse.c
* - Create a dummy program to keep from segfaulting when parsingKarl Rasche2003-11-234-49/+91
| | | | | fails - Change to grammar .emit to fix single LOCAL/ENV param usage
* GL_ARB_point_sprite is not part of 1.5Brian Paul2003-11-221-1/+0
|
* s/byte/GLubyte/ and other minor clean-upsBrian Paul2003-11-211-200/+198
|
* reformat comments for 80-column viewingBrian Paul2003-11-211-213/+248
|
* fix a bunch of warningsBrian Paul2003-11-213-16/+17
|
* more texture compressionDaniel Borca2003-11-215-21/+80
|
* Committing in .Jouk Jansen2003-11-212-1/+4
| | | | | | | | | | - Added arbparse.c to OpenVMS makefile - Added 2 type casts in a strcmp call to make my compiler happy. Modified Files: Mesa-newtree/src/mesa/main/arbparse.c Mesa-newtree/src/mesa/main/descrip.mms ----------------------------------------------------------------------
* Caught missing parse_color_type() [Jacob Jansen]Karl Rasche2003-11-211-3/+4
|
* Initial checkin of new ARB_frag/vertex program parserKarl Rasche2003-11-193-0/+7019
|
* Initial checking of new ARB_frag/vertex program parserKarl Rasche2003-11-195-6545/+320
|
* added reference to original half/float conversion codeBrian Paul2003-11-181-0/+4
|
* Some groundwork for supporting GLhalf datatype.Brian Paul2003-11-183-3/+311
|
* fix comments about Cr==V, Cb==UBrian Paul2003-11-181-2/+2
|
* no-op glAccum in selection/feedback mode (per Mark Kilgard's updates to the ↵Brian Paul2003-11-131-5/+8
| | | | 1.5 spec)
* Ville Syrjala's logic op patchBrian Paul2003-11-123-5/+17
|
* Redo array element checking for vertex array buffers.Brian Paul2003-11-104-88/+196
| | | | | | | Now, compute ctx->Array._MaxElement as the min of enabled array's max element. Test against ctx->Array._MaxElement in glDrawArrays/Elements. Note: testing in glArrayElement not done yet. Only do element checking if ctx->Const.CheckArrayBounds is set.