summaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast
Commit message (Collapse)AuthorAgeFilesLines
* Port over changes from XFree86/Mesa 5.0.2, mostly to silence compiler warnings.Brian Paul2003-12-042-9/+7
|
* current raster color index should be GLfloatBrian Paul2003-11-252-3/+3
|
* pass ctx to fetch_vector4_deriv()Brian Paul2003-11-221-3/+6
|
* fix some bugs in computation of DDX, DDY commandsBrian Paul2003-11-211-19/+22
|
* Initial checkin of new ARB_frag/vertex program parserKarl Rasche2003-11-191-4/+10
|
* added missing <type> error checking in read_index_pixels()Brian Paul2003-11-181-3/+13
|
* Ville Syrjala's logic op patchBrian Paul2003-11-123-5/+5
|
* More SciTech SNAP updates. Some of these files didn't really change, butKendall Bennett2003-10-222-6/+1
| | | | | | | they show up in the list (GLU stuff) for some reason. The major change here is the addition of code in the glx86asm.py file to generate assembler stub entry points with the correct name decorations for _stdcall calling conventions so this can be used on Windows boxes.
* Updates to SSE assembler support for Open WatcomKendall Bennett2003-10-211-1/+1
|
* don't use color table's format to determine texture env functionsBrian Paul2003-10-111-3/+0
|
* remove bogus _swrast_texture_table_lookup() call (Eric Plante)Brian Paul2003-10-101-5/+0
|
* Added missing #undef SPAN_VARS to swrast/s_spantemp.hKendall Bennett2003-10-091-0/+1
|
* More SciTech SNAP specific changes to glheader.h. Also modified the macrosKendall Bennett2003-10-081-10/+16
| | | | in swrast/s_spantemp.h to allow dithering to be used in the SNAP drivers.
* Fixed bugs in Mesa software span rendering for color index modesKendall Bennett2003-10-021-10/+16
|
* Assorted casts to silence g++ warnings.Brian Paul2003-09-192-1/+2
|
* Add include for context.h to define NEED_SECONDARY_COLOR.Karl Schultz2003-09-191-0/+1
|
* Make binary - even though this is a text file, common practice is to store ↵Karl Schultz2003-09-191-324/+324
| | | | MS studio files as binary
* Move away from using the ctx->_TriangleCaps bitfield.Brian Paul2003-09-183-8/+7
| | | | | New macros in context.h for testing state: NEED_SECONDARY_COLOR and NEED_TWO_SIDED_LIGHTING.
* s/_backface_sign/_BackfaceSign/Brian Paul2003-09-185-5/+5
|
* Add casts to prevent double->float conversion compiler warnings.Karl Schultz2003-09-181-2/+2
|
* changed a commentBrian Paul2003-09-171-2/+1
|
* move a commentBrian Paul2003-09-171-24/+22
|
* implement SWZ and TXB. some code clean-upBrian Paul2003-09-041-46/+55
|
* Added new opcodes for ARB_fragment_program, like ABS, CMP, TXB, etc.Brian Paul2003-09-041-0/+62
|
* Added support for EXT_texture_mirror_clamp and the single wrap modeIan Romanick2003-09-021-4/+31
| | | | | that it addes to ATI_texture_mirror_once. This includes updating the texwrap test to exercise the new mode.
* always assign texcoord[i][3] to silence valgrindBrian Paul2003-08-311-0/+2
|
* update parameter indexingBrian Paul2003-08-311-4/+5
|
* Generate browse info for Debug version.Karl Schultz2003-08-301-2/+2
|
* Silence compiler warnings about implicit casts or conversions by supplying ↵Karl Schultz2003-08-303-24/+46
| | | | explicit casts and/or tweaking constant and variable definitions.
* s/GLuint/GLint/Brian Paul2003-08-291-1/+1
|
* Move clamping of texture LOD bias to texture application time.Brian Paul2003-08-281-1/+4
|
* Added OpenGL 1.4's per-texture LOD bias.Brian Paul2003-08-281-2/+2
|
* Committing in .Jouk Jansen2003-08-271-1/+1
| | | | | | | | Added a type cast to silence the OpenVMS DECC compiler Modified Files: Mesa-newtree/src/mesa/swrast/s_nvfragprog.c ----------------------------------------------------------------------
* indentation fixBrian Paul2003-08-231-1/+1
|
* glDrawPixels(GL_DEPTH_COMPONENT) with glPixelZoom didn't workBrian Paul2003-08-233-36/+92
|
* Trivial changes to add support for GL_ARB_point_sprite, which is aIan Romanick2003-08-232-2/+2
| | | | subset of GL_NV_point_sprite (which was already supported).
* Re-org of register files for vertex/fragment programs. Will be easier toBrian Paul2003-08-171-106/+158
| | | | hook in global state references, etc. for ARB programs.
* VC 6 Project FileKarl Schultz2003-07-261-0/+324
|
* if texture color table is enabled, use the color table's format to evaluate ↵Brian Paul2003-07-241-0/+3
| | | | the texture env function
* fix GL_SGI_texture_colortable bugsBrian Paul2003-07-231-6/+6
|
* Implement debugger callback, etc for vertex programs. Misc clean-ups.Brian Paul2003-07-221-0/+4
|
* Initial implementation of GL_MESA_program_debug - a vertex/fragment programBrian Paul2003-07-211-7/+19
| | | | debugging extension.
* Implemented GL_ARB_texture_non_power_of_two (except for auto mipmap generation).Brian Paul2003-07-032-12/+45
|
* Committing in .Jouk Jansen2003-07-021-0/+29
| | | | | | | | | | | | | | | | | | | | Enable installation on OpenVMS ODS5 disks. Modified Files: Mesa-newtree/progs/demos/descrip.mms Mesa-newtree/progs/tests/descrip.mms Mesa-newtree/progs/xdemos/descrip.mms Mesa-newtree/src/glut/glx/descrip.mms Mesa-newtree/src/mesa/array_cache/descrip.mms Mesa-newtree/src/mesa/drivers/osmesa/descrip.mms Mesa-newtree/src/mesa/drivers/x11/descrip.mms Mesa-newtree/src/mesa/glapi/descrip.mms Mesa-newtree/src/mesa/main/descrip.mms Mesa-newtree/src/mesa/math/descrip.mms Mesa-newtree/src/mesa/swrast/descrip.mms Mesa-newtree/src/mesa/swrast_setup/descrip.mms Mesa-newtree/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
* Committing in .Jouk Jansen2003-06-171-0/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | OpenVMS support for new directory tree Modified Files: Mesa-newtree/progs/demos/descrip.mms Mesa-newtree/progs/tests/descrip.mms Mesa-newtree/progs/xdemos/descrip.mms Mesa-newtree/src/glu/sgi/descrip.mms Mesa-newtree/src/glut/glx/descrip.mms Mesa-newtree/src/mesa/main/descrip.mms Added Files: Mesa-newtree/descrip.mms Mesa-newtree/mms-config. Mesa-newtree/src/descrip.mms Mesa-newtree/src/glu/descrip.mms Mesa-newtree/src/mesa/descrip.mms Mesa-newtree/src/mesa/array_cache/descrip.mms Mesa-newtree/src/mesa/drivers/osmesa/descrip.mms Mesa-newtree/src/mesa/drivers/x11/descrip.mms Mesa-newtree/src/mesa/glapi/descrip.mms Mesa-newtree/src/mesa/math/descrip.mms Mesa-newtree/src/mesa/swrast/descrip.mms Mesa-newtree/src/mesa/swrast_setup/descrip.mms Mesa-newtree/src/mesa/tnl/descrip.mms Mesa-newtree/vms/analyze_map.com Mesa-newtree/vms/xlib.opt Mesa-newtree/vms/xlib_share.opt ----------------------------------------------------------------------
* Implemented GL_ARB_occlusion_query (not 100% finalized).Brian Paul2003-06-133-6/+34
|
* fixes for x86 buildsBrian Paul2003-06-101-5/+4
|
* Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything.Ian Romanick2003-06-0543-45/+0
|
* initialize condition codes before running programBrian Paul2003-05-101-3/+17
|
* Use ctx->Const.MaxTextureImageUnits and MaxTextureCoordUnits in more places.Brian Paul2003-05-012-2/+6
| | | | Misc vertex array / vertex program changes.