Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | updated email addresses | Brian Paul | 2002-10-29 | 3 | -7/+7 |
| | |||||
* | Add casts to quiet compiler warnings. | Karl Schultz | 2002-10-28 | 1 | -6/+6 |
| | |||||
* | Header file clean-up: | Brian Paul | 2002-10-24 | 17 | -33/+35 |
| | | | | | | | | 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. | ||||
* | GL_ATI_texture_mirror_once extension (Ian Romanick) | Brian Paul | 2002-10-21 | 1 | -2/+50 |
| | |||||
* | doxygen comments (Klaus Niederkrueger) | Brian Paul | 2002-10-21 | 1 | -13/+26 |
| | |||||
* | Add casts to quiet compiler warnings. | Karl Schultz | 2002-10-18 | 4 | -13/+17 |
| | |||||
* | fix bug in GL_MIRRORED_REPEAT_ARB (Ian Romanick) | Brian Paul | 2002-10-18 | 1 | -1/+2 |
| | |||||
* | patches from Gerk Huisma for float-channel rendering | Brian Paul | 2002-10-17 | 2 | -27/+50 |
| | |||||
* | init swrast->CurrentBuffer | Brian Paul | 2002-10-11 | 1 | -1/+6 |
| | |||||
* | Another round of glRead/DrawBuffer() clean-ups and simplifications. | Brian Paul | 2002-10-11 | 5 | -67/+40 |
| | | | | | | | 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. | ||||
* | finally get rid of ctx->Texture._ReallyEnabled field | Brian Paul | 2002-10-08 | 1 | -3/+3 |
| | |||||
* | remove const storage class specifier for the decl of a var that isn't | Karl Schultz | 2002-10-04 | 1 | -2/+2 |
| | | | | a const. | ||||
* | Changed a number of context fields from GLchan to GLfloat (such as ClearColor). | Brian Paul | 2002-10-04 | 4 | -54/+58 |
| | | | | | | 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. | ||||
* | multiple GL_POINTS can now be rendered together into one fragment span | Brian Paul | 2002-10-04 | 4 | -125/+240 |
| | |||||
* | finished up GL_EXT_stencil_two_side | Brian Paul | 2002-10-02 | 5 | -15/+19 |
| | |||||
* | new texture compression infrastructure | Brian Paul | 2002-09-27 | 1 | -98/+48 |
| | |||||
* | merge gl_texture_image RowStride from DRI 4.0.4 | Brian Paul | 2002-09-23 | 2 | -4/+7 |
| | |||||
* | GL_MESA_pack_invert | Brian Paul | 2002-09-21 | 1 | -2/+9 |
| | |||||
* | updates from 4.0.4 (MESA_ycbcr_texture, APPLE_client_storage, etc) | Brian Paul | 2002-09-21 | 1 | -2/+3 |
| | |||||
* | pull-in changes from DRI/Mesa-4.0.4 | Brian Paul | 2002-09-17 | 2 | -2/+25 |
| | |||||
* | fixed _mesa_generate_mipmaps() target problem | Brian Paul | 2002-09-16 | 1 | -8/+8 |
| | |||||
* | GL_EXT_stencil_two_side extension, not 100% complete yet. | Brian Paul | 2002-09-06 | 3 | -87/+95 |
| | |||||
* | re-check-in - something didn't work on the previous check-in | Brian Paul | 2002-08-07 | 1 | -164/+164 |
| | |||||
* | struct sw_span is again allocated on the stack, but the arrays of span | Brian Paul | 2002-08-07 | 23 | -908/+1007 |
| | | | | | | | 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. | ||||
* | Overhaul of glRead/DrawBuffer() code. Now, swrast->Driver.SetBuffer() | Brian Paul | 2002-07-09 | 11 | -196/+244 |
| | | | | | indicates the read AND draw color buffer for all software rasterization. Lots of related clean-ups. See RELNOTES-4.1 for details. | ||||
* | blending fixes for CHAN_TYPE==GL_FLOAT (Gerk Huisma) | Brian Paul | 2002-06-30 | 1 | -1/+38 |
| | |||||
* | fix CHAN_TYPE==GL_FLOAT compile problem | Brian Paul | 2002-06-26 | 1 | -3/+5 |
| | |||||
* | Implemented GL_NV_texture_rectangle extension. | Brian Paul | 2002-06-15 | 11 | -51/+248 |
| | | | | | | | | | 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. | ||||
* | Added ctx parameter to _mesa_debug() | Brian Paul | 2002-06-15 | 6 | -40/+119 |
| | | | | | | Added _mesa_printf() Updated SetDrawBuffer() function in all drivers (ala 4.0.3) Import 4.0.3/DRI changes. | ||||
* | more removal of fprintf() calls | Brian Paul | 2002-06-13 | 1 | -28/+30 |
| | |||||
* | replaced experimental MESA_sprite_point with NV_point_sprite | Brian Paul | 2002-05-27 | 2 | -69/+44 |
| | |||||
* | Implemented GL_ARB_texture_env_crossbar. | Brian Paul | 2002-05-02 | 6 | -171/+213 |
| | | | | Simplification of some of the texture application code. | ||||
* | fixed Width/Height cut&paste typo | Brian Paul | 2002-04-20 | 2 | -6/+6 |
| | |||||
* | Added min and max blend functions. | Jose Fonseca | 2002-04-19 | 1 | -3/+15 |
| | | | | Slight optimization of _mesa_mmx_blend_add. | ||||
* | Allocate a sw_span struct in the swrast context instead of allocating it | Brian Paul | 2002-04-19 | 15 | -897/+906 |
| | | | | | on the stack frame in the point/line/triangle functions. (Klaus Niederkrueger) This should solve the performance problem Karl found on Windows. | ||||
* | MMX add blending function added. | Jose Fonseca | 2002-04-19 | 1 | -2/+8 |
| | |||||
* | MMX modulate belding function added. | Jose Fonseca | 2002-04-19 | 1 | -2/+8 |
| | | | | Factorization of more common MMX code. | ||||
* | removed a stray debug printf | Brian Paul | 2002-04-19 | 1 | -2/+1 |
| | |||||
* | casts to fix GLint/GLuint mismatches | Brian Paul | 2002-04-19 | 9 | -63/+74 |
| | |||||
* | restored writeAll = GL_FALSE test/assignment | Brian Paul | 2002-04-18 | 1 | -2/+6 |
| | |||||
* | fixes for corrected GL_DOT3_RGB[A]_EXT token values | Brian Paul | 2002-04-12 | 1 | -7/+32 |
| | |||||
* | updated a few comments | Brian Paul | 2002-04-12 | 1 | -4/+5 |
| | |||||
* | Klaus Niederkrueger's latest changes: use INIT_SPAN() to init span primitive | Brian Paul | 2002-04-12 | 17 | -209/+240 |
| | | | | type, width, interp mask and array mask. | ||||
* | new MMX blend code (Jose Fonseca) | Brian Paul | 2002-04-10 | 1 | -5/+3 |
| | |||||
* | Texture combine alpha subtraction was wrong. Fixed 16-bit channel glitches | Brian Paul | 2002-04-04 | 1 | -8/+18 |
| | |||||
* | use NULL lambda array for pixel texture | Brian Paul | 2002-04-04 | 1 | -8/+9 |
| | |||||
* | fixed 16 bit/channel problem in blend_modulate() | Brian Paul | 2002-04-04 | 1 | -5/+14 |
| | |||||
* | fixed 16/32-bit channel problems in CopyColor[Sub]Table() | Brian Paul | 2002-04-04 | 1 | -5/+5 |
| | |||||
* | blend_add() modified for GLfloat channels | Brian Paul | 2002-04-04 | 1 | -5/+15 |
| | |||||
* | more blending updates from Jose | Brian Paul | 2002-04-02 | 1 | -19/+9 |
| |