Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-01-14 | First 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-18 | comment changes | Brian Paul | |
2002-12-05 | properly handle very wide images | Brian Paul | |
2002-12-05 | clean-ups, comments | Brian Paul | |
2002-11-28 | mask is always non-null in write_rgba_pixels and write_monorgba_pixels | Brian Paul | |
2002-11-26 | added missing call to _mesa_write_mono_alpha_span() | Brian Paul | |
2002-11-26 | fixed bad clear value | Brian Paul | |
2002-11-25 | set default texcoords for glBitmap/glDrawPixels | Brian Paul | |
2002-11-15 | more clean-ups | Brian Paul | |
2002-11-14 | Overhaul of line drawing template code. Make better use of sw_span mechanism. | Brian Paul | |
2002-11-13 | template code for span functions for flat, memory-based frame buffers | Brian Paul | |
2002-11-13 | moved function declaration into the template, define the NAME to specify the ↵ | Brian Paul | |
function names | |||
2002-11-13 | added comments about NULL mask parameter to span-write functions | Brian Paul | |
2002-11-13 | optimized color buffer clear fallback (use mono-color span functions | Brian Paul | |
2002-11-12 | apply scale factor before clapping for DOT3 | Brian Paul | |
2002-11-09 | fix float->int Z calculation in _mesa_span_default_z() | Brian Paul | |
2002-11-09 | fix one-bit error in float->int Z calculation | Brian Paul | |
2002-10-30 | remove some stray debug/abort code | Brian Paul | |
2002-10-30 | don't call abort() | Brian Paul | |
2002-10-30 | s/printf/_mesa_printf/ | Brian Paul | |
2002-10-30 | s/BZERO/_mesa_bzero/ | Brian Paul | |
2002-10-29 | updated email addresses | Brian Paul | |
2002-10-28 | Add casts to quiet compiler warnings. | Karl Schultz | |
2002-10-24 | Header 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-21 | GL_ATI_texture_mirror_once extension (Ian Romanick) | Brian Paul | |
2002-10-21 | doxygen comments (Klaus Niederkrueger) | Brian Paul | |
2002-10-18 | Add casts to quiet compiler warnings. | Karl Schultz | |
2002-10-18 | fix bug in GL_MIRRORED_REPEAT_ARB (Ian Romanick) | Brian Paul | |
2002-10-17 | patches from Gerk Huisma for float-channel rendering | Brian Paul | |
2002-10-11 | init swrast->CurrentBuffer | Brian Paul | |
2002-10-11 | Another 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-08 | finally get rid of ctx->Texture._ReallyEnabled field | Brian Paul | |
2002-10-04 | remove const storage class specifier for the decl of a var that isn't | Karl Schultz | |
a const. | |||
2002-10-04 | Changed 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-04 | multiple GL_POINTS can now be rendered together into one fragment span | Brian Paul | |
2002-10-02 | finished up GL_EXT_stencil_two_side | Brian Paul | |
2002-09-27 | new texture compression infrastructure | Brian Paul | |
2002-09-23 | merge gl_texture_image RowStride from DRI 4.0.4 | Brian Paul | |
2002-09-21 | GL_MESA_pack_invert | Brian Paul | |
2002-09-21 | updates from 4.0.4 (MESA_ycbcr_texture, APPLE_client_storage, etc) | Brian Paul | |
2002-09-17 | pull-in changes from DRI/Mesa-4.0.4 | Brian Paul | |
2002-09-16 | fixed _mesa_generate_mipmaps() target problem | Brian Paul | |
2002-09-06 | GL_EXT_stencil_two_side extension, not 100% complete yet. | Brian Paul | |
2002-08-07 | re-check-in - something didn't work on the previous check-in | Brian Paul | |
2002-08-07 | struct sw_span is again allocated on the stack, but the arrays of span | Brian Paul | |
data are broken out into a new struct span_arrays which is allocated per-context (to avoid huge stack allocations - a problem on Windows). This lets us use span.redStep instead of span->redStep (for example) to hopefully get slightly better performance in the triangle functions. | |||
2002-07-09 | Overhaul of glRead/DrawBuffer() code. Now, swrast->Driver.SetBuffer() | Brian Paul | |
indicates the read AND draw color buffer for all software rasterization. Lots of related clean-ups. See RELNOTES-4.1 for details. | |||
2002-06-30 | blending fixes for CHAN_TYPE==GL_FLOAT (Gerk Huisma) | Brian Paul | |
2002-06-26 | fix CHAN_TYPE==GL_FLOAT compile problem | Brian Paul | |
2002-06-15 | Implemented GL_NV_texture_rectangle extension. | Brian Paul | |
Replace struct gl_texure_object's Dimension w/ Target field. Added _EnabledUnits to struct gl_texture_attrib - the _ReallyEnabled field is obsolete, but still present for now. This effectively removes the 8-texture units limit, 32 units now possible, but unlikely! New TEXTURE_1D/2D/3D/CUBE/RECT_BIT tokens for unit->_ReallyEnabled field. Updated device drivers to use ctx->Texture._EnabledUnits. | |||
2002-06-15 | Added ctx parameter to _mesa_debug() | Brian Paul | |
Added _mesa_printf() Updated SetDrawBuffer() function in all drivers (ala 4.0.3) Import 4.0.3/DRI changes. |