summaryrefslogtreecommitdiff
path: root/src/mesa/swrast
AgeCommit message (Collapse)Author
2004-01-27Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a singleKeith Whitwell
array, texObj->Image[face][level].
2004-01-23Change software alpha plane pointers from void* to GLchan*, eliminate some ↵Brian Paul
casts.
2004-01-23Initial support for floating point and signed texture formats.Brian Paul
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.
2004-01-14added blurb about NVIDIA extensionsBrian Paul
2004-01-13add cast to quiet compiler warningKarl Schultz
2003-12-15fix GL_MIN/MAX w/ glBlendFuncSeparate bug (Ian Romanick)Brian Paul
2003-12-13Problem computing specular value in OPCODE_LIT - pulled in value fromKarl Rasche
vertex program execution of LIT
2003-12-13init vars to silence warningsBrian Paul
2003-12-09Update NEED_SECONDARY_COLOR macro to test if either vertex/fragmentBrian Paul
programs are enabled and if they need secondary color input register. Patch by Karl Rasche, with tweaks by Brian.
2003-12-05Fix a front/back CopyPixels glitch.Brian Paul
2003-12-04Port over changes from XFree86/Mesa 5.0.2, mostly to silence compiler warnings.Brian Paul
2003-11-25current raster color index should be GLfloatBrian Paul
2003-11-22pass ctx to fetch_vector4_deriv()Brian Paul
2003-11-21fix some bugs in computation of DDX, DDY commandsBrian Paul
2003-11-19Initial checkin of new ARB_frag/vertex program parserKarl Rasche
2003-11-18added missing <type> error checking in read_index_pixels()Brian Paul
2003-11-12Ville Syrjala's logic op patchBrian Paul
2003-10-22More SciTech SNAP updates. Some of these files didn't really change, butKendall Bennett
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.
2003-10-21Updates to SSE assembler support for Open WatcomKendall Bennett
2003-10-11don't use color table's format to determine texture env functionsBrian Paul
2003-10-10remove bogus _swrast_texture_table_lookup() call (Eric Plante)Brian Paul
2003-10-09Added missing #undef SPAN_VARS to swrast/s_spantemp.hKendall Bennett
2003-10-08More SciTech SNAP specific changes to glheader.h. Also modified the macrosKendall Bennett
in swrast/s_spantemp.h to allow dithering to be used in the SNAP drivers.
2003-10-02Fixed bugs in Mesa software span rendering for color index modesKendall Bennett
2003-09-19Assorted casts to silence g++ warnings.Brian Paul
2003-09-19Add include for context.h to define NEED_SECONDARY_COLOR.Karl Schultz
2003-09-19Make binary - even though this is a text file, common practice is to store ↵Karl Schultz
MS studio files as binary
2003-09-18Move away from using the ctx->_TriangleCaps bitfield.Brian Paul
New macros in context.h for testing state: NEED_SECONDARY_COLOR and NEED_TWO_SIDED_LIGHTING.
2003-09-18s/_backface_sign/_BackfaceSign/Brian Paul
2003-09-18Add casts to prevent double->float conversion compiler warnings.Karl Schultz
2003-09-17changed a commentBrian Paul
2003-09-17move a commentBrian Paul
2003-09-04implement SWZ and TXB. some code clean-upBrian Paul
2003-09-04Added new opcodes for ARB_fragment_program, like ABS, CMP, TXB, etc.Brian Paul
2003-09-02Added support for EXT_texture_mirror_clamp and the single wrap modeIan Romanick
that it addes to ATI_texture_mirror_once. This includes updating the texwrap test to exercise the new mode.
2003-08-31always assign texcoord[i][3] to silence valgrindBrian Paul
2003-08-31update parameter indexingBrian Paul
2003-08-30Generate browse info for Debug version.Karl Schultz
2003-08-30Silence compiler warnings about implicit casts or conversions by supplying ↵Karl Schultz
explicit casts and/or tweaking constant and variable definitions.
2003-08-29s/GLuint/GLint/Brian Paul
2003-08-28Move clamping of texture LOD bias to texture application time.Brian Paul
2003-08-28Added OpenGL 1.4's per-texture LOD bias.Brian Paul
2003-08-27 Committing in .Jouk Jansen
Added a type cast to silence the OpenVMS DECC compiler Modified Files: Mesa-newtree/src/mesa/swrast/s_nvfragprog.c ----------------------------------------------------------------------
2003-08-23indentation fixBrian Paul
2003-08-23glDrawPixels(GL_DEPTH_COMPONENT) with glPixelZoom didn't workBrian Paul
2003-08-23Trivial changes to add support for GL_ARB_point_sprite, which is aIan Romanick
subset of GL_NV_point_sprite (which was already supported).
2003-08-17Re-org of register files for vertex/fragment programs. Will be easier toBrian Paul
hook in global state references, etc. for ARB programs.
2003-07-26VC 6 Project FileKarl Schultz
2003-07-24if texture color table is enabled, use the color table's format to evaluate ↵Brian Paul
the texture env function
2003-07-23fix GL_SGI_texture_colortable bugsBrian Paul