summaryrefslogtreecommitdiff
path: root/src/mesa/swrast
AgeCommit message (Collapse)Author
2003-01-28move ltor computationBrian Paul
2003-01-26Make GL_SGI_texture_color_table work per-texture unit.Brian Paul
Clean-up and optimize _swrast_texture_table_lookup().
2003-01-25optimize compute_coveragef (Evgeny Kotsuba)Brian Paul
2003-01-22improved solve_plane_chan() (Evgeny Kotsuba)Brian Paul
2003-01-21GL_SGI_texture_color_table extension (Eric Plante)Brian Paul
2003-01-21GL_ATI_texture_env_combine3 extensionBrian Paul
2003-01-20fix an assertionBrian Paul
2003-01-20use COPY_CHAN4 macroBrian Paul
2003-01-20use R/G/B/ACOMP indexes (Evgeny Kotsuba)Brian Paul
2003-01-20fix IBM CPP warning (Evgeny Kotsuba)Brian Paul
2003-01-16another fix for glDrawPixels + clippingBrian Paul
2003-01-15fix glDrawPixels hang when clippingBrian Paul
2003-01-14fragment program executionBrian Paul
2003-01-14First batch of code for GL_NV_fragment_program.Brian Paul
Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS.
2002-12-18comment changesBrian Paul
2002-12-05properly handle very wide imagesBrian Paul
2002-12-05clean-ups, commentsBrian Paul
2002-11-28mask is always non-null in write_rgba_pixels and write_monorgba_pixelsBrian Paul
2002-11-26added missing call to _mesa_write_mono_alpha_span()Brian Paul
2002-11-26fixed bad clear valueBrian Paul
2002-11-25set default texcoords for glBitmap/glDrawPixelsBrian Paul
2002-11-15more clean-upsBrian Paul
2002-11-14Overhaul of line drawing template code. Make better use of sw_span mechanism.Brian Paul
2002-11-13template code for span functions for flat, memory-based frame buffersBrian Paul
2002-11-13moved function declaration into the template, define the NAME to specify the ↵Brian Paul
function names
2002-11-13added comments about NULL mask parameter to span-write functionsBrian Paul
2002-11-13optimized color buffer clear fallback (use mono-color span functionsBrian Paul
2002-11-12apply scale factor before clapping for DOT3Brian Paul
2002-11-09fix float->int Z calculation in _mesa_span_default_z()Brian Paul
2002-11-09fix one-bit error in float->int Z calculationBrian Paul
2002-10-30remove some stray debug/abort codeBrian Paul
2002-10-30don't call abort()Brian Paul
2002-10-30s/printf/_mesa_printf/Brian Paul
2002-10-30s/BZERO/_mesa_bzero/Brian Paul
2002-10-29updated email addressesBrian Paul
2002-10-28Add casts to quiet compiler warnings.Karl Schultz
2002-10-24Header file clean-up:Brian Paul
1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc.
2002-10-21GL_ATI_texture_mirror_once extension (Ian Romanick)Brian Paul
2002-10-21doxygen comments (Klaus Niederkrueger)Brian Paul
2002-10-18Add casts to quiet compiler warnings.Karl Schultz
2002-10-18fix bug in GL_MIRRORED_REPEAT_ARB (Ian Romanick)Brian Paul
2002-10-17patches from Gerk Huisma for float-channel renderingBrian Paul
2002-10-11init swrast->CurrentBufferBrian Paul
2002-10-11Another round of glRead/DrawBuffer() clean-ups and simplifications.Brian Paul
Replaced ctx->Color._DriverDrawBuffer with swrast->CurrentBuffer. Replaced ctx->Pixel._DriverReadBuffer with ctx->Pixel._ReadSrcMask. swrast->Driver.SetBuffer() takes FRONT/BACK_LEFT/RIGHT_BIT values now. Added tokens and code for GL_AUX buffers, for completeness.
2002-10-08finally get rid of ctx->Texture._ReallyEnabled fieldBrian Paul
2002-10-04remove const storage class specifier for the decl of a var that isn'tKarl Schultz
a const.
2002-10-04Changed a number of context fields from GLchan to GLfloat (such as ClearColor).Brian Paul
Also changed parameter types for some driver functions (like ctx->Driver.Clear- Color). Updated all the device drivers. Someday, we want to support 8, 16 and 32-bit channels dynamically at runtime.
2002-10-04multiple GL_POINTS can now be rendered together into one fragment spanBrian Paul
2002-10-02finished up GL_EXT_stencil_two_sideBrian Paul
2002-09-27new texture compression infrastructureBrian Paul