summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
Commit message (Collapse)AuthorAgeFilesLines
* Remove FLT_MIN definition to imports.hBrian Paul2003-09-182-48/+45
| | | | Assorted code clean-ups in light.c
* Add casts to prevent signed/unsigned compare compiler warnings.Karl Schultz2003-09-182-6/+6
|
* remove unused Target field from gl_buffer_objectBrian Paul2003-09-171-1/+0
|
* Fixed/added some error checks.Brian Paul2003-09-171-27/+31
| | | | | Allow one buffer to be bound to multiple targets. Rebind buffer 0 when deleting currently bound buffer.
* unbind vertex arrays from buffer in DeleteBuffersARB()Brian Paul2003-09-171-1/+26
|
* Implement GL_ELEMENT_ARRAY_BUFFER_ARB for buffer objects.Brian Paul2003-09-171-0/+8
|
* Change the hyperlinks names in the main page to match the Doxygen generated ↵Jose Fonseca2003-09-171-3/+3
| | | | ones.
* GL_ARB_vertex_buffer_object working now, at least for non-indexedBrian Paul2003-09-173-4/+19
| | | | vertex arrays.
* More work on ARB_vertex_buffer_object.Brian Paul2003-09-178-128/+217
| | | | | Use GLubyte * instead of void * for gl_client_array->Ptr to simplify upcoming pointer arithmetic changes.
* move some functions, add some commentsBrian Paul2003-09-171-32/+40
|
* set ARB_vertex_buffer_object in _mesa_enable_sw_extensions()Brian Paul2003-09-171-1/+4
|
* fix up FEATURE_* definesBrian Paul2003-09-171-21/+14
|
* minor simplificationBrian Paul2003-09-151-4/+4
|
* Some work on ARB_vertex_buffer_object.Brian Paul2003-09-156-101/+98
| | | | Use GL_CLIENT_ACTIVE_TEXTURE when returning texcoord array values in get.c
* Updates to fix problems building with the Open Watcom compiler.Kendall Bennett2003-09-124-65/+73
|
* Allow glTexImage1/2/3D to specify width/height/depth = 0.Brian Paul2003-09-124-11/+21
| | | | | This allows texture state to be resettable to default state. Not allowed according to the spec, but allowed by all other OpenGL libs.
* display list support for ARB_vertex/fragment_programBrian Paul2003-09-091-11/+148
|
* plug in vertex buffer object functionsBrian Paul2003-09-091-0/+18
|
* Added prototypes for internal functions to bufferobj.h.Brian Paul2003-09-092-37/+69
| | | | Minor code clean-ups.
* Added most of the infrastructure required to supportIan Romanick2003-09-094-80/+583
| | | | ARB_vertex_buffer_object. THIS IS INCOMPLETE.
* fix typoBrian Paul2003-09-051-1/+1
|
* move GL_MESA_program_debug code into program.cBrian Paul2003-09-054-215/+239
|
* Committing in .Jouk Jansen2003-09-051-0/+1
| | | | | | | | | Added missing include files. Modified Files: Mesa-newtree/progs/demos/isosurf.c Mesa-newtree/src/mesa/main/nvvertexec.c ----------------------------------------------------------------------
* move SWIZZLE_ZERO/ONE tokens to program.hBrian Paul2003-09-042-5/+4
|
* Added new opcodes for ARB_fragment_program, like ABS, CMP, TXB, etc.Brian Paul2003-09-041-21/+27
|
* ARB_point_sprite is not part of OpenGL 1.5Brian Paul2003-09-031-2/+0
|
* Added support for EXT_texture_mirror_clamp and the single wrap modeIan Romanick2003-09-023-52/+37
| | | | | that it addes to ATI_texture_mirror_once. This includes updating the texwrap test to exercise the new mode.
* add missing glNormal, glVertex calls (Michal Wozniak)Brian Paul2003-09-021-1/+3
|
* fix fog.End errorBrian Paul2003-09-021-1/+1
|
* added minor assertionBrian Paul2003-08-311-1/+2
|
* Moved some shared vertex/fragment program code into new program.c file.Brian Paul2003-08-3118-596/+1216
| | | | | | | Implemented new program_parameter_list type and functions for dealing with named program parameters, constants and GL state references. New state_index enum for describing GL state referenced within ARB vertex/ fragment programs. Plus, functions for fetching named GL state.
* Generate browse info for Debug version.Karl Schultz2003-08-301-1/+1
|
* Silence compiler warnings about implicit casts or conversions by supplying ↵Karl Schultz2003-08-3013-43/+54
| | | | explicit casts and/or tweaking constant and variable definitions.
* fix minor warnings with castsBrian Paul2003-08-292-8/+15
|
* add arbfragparse.c to project.Karl Schultz2003-08-291-2/+10
|
* Move clamping of texture LOD bias to texture application time.Brian Paul2003-08-281-5/+5
|
* Added OpenGL 1.4's per-texture LOD bias.Brian Paul2003-08-285-0/+25
|
* Trivial changes to add support for GL_ARB_point_sprite, which is aIan Romanick2003-08-237-40/+68
| | | | subset of GL_NV_point_sprite (which was already supported).
* Added support for GL_IBM_multimode_draw_arrays.Ian Romanick2003-08-227-161/+268
| | | | | | | | Added non-static entrypoints and the name string for GL_SUN_multi_draw_arrays (identical to GL_EXT_multi_draw_arrays). Made add_newer_entrypoints (in src/mesa/main/context.c) table driven. This reduced the size of context.o by about 3KB.
* Fix glPixelMap: s/GLint/GLsizei/Brian Paul2003-08-192-10/+10
|
* minor code improvement in glGenTexturesBrian Paul2003-08-181-7/+3
|
* register file changesBrian Paul2003-08-171-16/+16
|
* Re-org of register files for vertex/fragment programs. Will be easier toBrian Paul2003-08-1711-502/+397
| | | | hook in global state references, etc. for ARB programs.
* Committing in .Jouk Jansen2003-08-111-0/+6
| | | | | | | | Update OpenVMS makefile due to new source files. Modified Files: Mesa-newtree/src/mesa/main/descrip.mms ----------------------------------------------------------------------
* prep for OpenGL 1.5Brian Paul2003-08-062-1/+11
|
* fix a bunch of warningsBrian Paul2003-08-061-49/+51
|
* remove temporary prototypesBrian Paul2003-08-061-18/+2
|
* placeholder filesBrian Paul2003-08-062-0/+79
|
* Store material attributes in an Attrib[] style array. This is aKeith Whitwell2003-08-056-385/+213
| | | | | first step to reviving/rescuing the 'vtx' rework from the old mesa tree.
* Fix samples/fog.c regression - missing test for NeedEyeCoords.Keith Whitwell2003-08-051-6/+15
|