Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-12-02 | Fix some warnings | Alan Hourihane | |
2004-09-13 | tweak texcoord for sampling texture rectangles (Dave Reveman) | Brian Paul | |
2004-08-25 | Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵ | Brian Paul | |
1015696) | |||
2004-06-11 | fix minor typo in comment | Brian Paul | |
2004-06-02 | Check for NULL texture object when choosing texture sampler. Fixes segfault ↵ | Brian Paul | |
when fragment program references an incomplete texture | |||
2004-05-12 | Added big-endian texture formats. | Brian Paul | |
Moved CI->RGBA palette lookup into texel fetch function. | |||
2004-05-06 | fix rectangle texture clamping and border-related code | Brian Paul | |
2004-02-28 | move _swrast_texture_table_lookup() to _mesa_lookup_rgba_chan() | Brian Paul | |
2004-02-28 | replace color table FloatTable boolean with Type enum | Brian Paul | |
2004-02-06 | Refactor "class" texture environments to be implemented in terms of | Ian Romanick | |
ARB_texture_env_combine state. | |||
2004-02-02 | fixed a bug in GL_NEAREST sampler | Daniel Borca | |
2004-01-27 | Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a single | Keith Whitwell | |
array, texObj->Image[face][level]. | |||
2004-01-23 | Initial 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. | |||
2003-10-11 | don't use color table's format to determine texture env functions | Brian Paul | |
2003-09-02 | Added support for EXT_texture_mirror_clamp and the single wrap mode | Ian Romanick | |
that it addes to ATI_texture_mirror_once. This includes updating the texwrap test to exercise the new mode. | |||
2003-08-29 | s/GLuint/GLint/ | Brian Paul | |
2003-08-28 | Move clamping of texture LOD bias to texture application time. | Brian Paul | |
2003-08-28 | Added OpenGL 1.4's per-texture LOD bias. | Brian Paul | |
2003-07-24 | if texture color table is enabled, use the color table's format to evaluate ↵ | Brian Paul | |
the texture env function | |||
2003-07-23 | fix GL_SGI_texture_colortable bugs | Brian Paul | |
2003-07-03 | Implemented GL_ARB_texture_non_power_of_two (except for auto mipmap generation). | Brian Paul | |
2003-04-14 | fix depth texture tex env bug (#719903) | Brian Paul | |
2003-03-04 | fix GLchan=GLfloat problems | Brian Paul | |
2003-03-01 | Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch] | Brian Paul | |
Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h | |||
2003-02-27 | fix compilation warnings on Windows | Karl Schultz | |
2003-02-23 | Move span stuff from swrast.h to s_context.h (it's private). | Brian Paul | |
Implemented remaining fragment program instructions. Initial changes to implement fragment program texture sampling. | |||
2003-02-06 | replace | with & (Laurent Desnogues) | Brian Paul | |
2003-01-26 | Make GL_SGI_texture_color_table work per-texture unit. | Brian Paul | |
Clean-up and optimize _swrast_texture_table_lookup(). | |||
2003-01-21 | GL_SGI_texture_color_table extension (Eric Plante) | Brian Paul | |
2003-01-21 | GL_ATI_texture_env_combine3 extension | Brian Paul | |
2002-11-12 | apply scale factor before clapping for DOT3 | 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-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-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-09-23 | merge gl_texture_image RowStride from DRI 4.0.4 | Brian Paul | |
2002-09-21 | updates from 4.0.4 (MESA_ycbcr_texture, APPLE_client_storage, etc) | 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-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-05-02 | Implemented GL_ARB_texture_env_crossbar. | Brian Paul | |
Simplification of some of the texture application code. | |||
2002-04-19 | casts to fix GLint/GLuint mismatches | Brian Paul | |
2002-04-12 | fixes for corrected GL_DOT3_RGB[A]_EXT token values | Brian Paul | |
2002-04-12 | Klaus Niederkrueger's latest changes: use INIT_SPAN() to init span primitive | Brian Paul | |
type, width, interp mask and array mask. | |||
2002-04-04 | Texture combine alpha subtraction was wrong. Fixed 16-bit channel glitches | Brian Paul | |
2002-03-23 | Test implementation of proposed GL_EXT_shadow_funcs extension. This just | Brian Paul | |
generalizes the R/texture comparision operators to include all eight of the depth test comparisons. | |||
2002-03-16 | New mipmap lambda calculation. Previously, trilinear filtering could | Brian Paul | |
result in _very_ blurry textures. Still need to do some optimization of the new code in s_span.c |