Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-18 | mesa: Remove unnecessary header from mipmap.c. | Vinson Lee | |
2009-10-28 | Merge branch 'texformat-rework' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/radeon/radeon_fbo.c src/mesa/drivers/dri/s3v/s3v_tex.c src/mesa/drivers/dri/s3v/s3v_xmesa.c src/mesa/drivers/dri/trident/trident_context.c src/mesa/main/debug.c src/mesa/main/mipmap.c src/mesa/main/texformat.c src/mesa/main/texgetimage.c | |||
2009-10-25 | mesa: begin removing _mesa_compressed_row_stride() calls | Brian Paul | |
Use equivalent _mesa_format_row_stride() function instead. | |||
2009-10-24 | mesa: change compressed texture size calls | Brian Paul | |
Replace calls to ctx->Driver.CompressedTextureSize with calls to _mesa_format_image_size. The former always called the later. | |||
2009-10-05 | mesa: move _mesa_format_to_type_and_comps() to formats.c | Brian Paul | |
2009-10-05 | Use _mesa_select_tex_image() rather than hardcoding face 0. | Michel Dänzer | |
Fixes crash loading a map in sauerbraten with hwmipmap 1 in ~/.sauerbraten/config.cfg. | |||
2009-10-01 | mesa: removed gl_texture_image::CompressedSize field | Brian Paul | |
Just call ctx->Driver.CompressedTextureSize() when we need to get the compressed image size. | |||
2009-10-01 | mesa: remove gl_texture_image::IsCompressed field | Brian Paul | |
Use _mesa_is_format_compressed() instead. | |||
2009-10-01 | mesa: fix memory leak when generating mipmaps for compressed textures | Brian Paul | |
2009-09-30 | mesa: remove GLchan-based formats; use hw 8-bit/channel formats instead | Brian Paul | |
Removed: MESA_FORMAT_RGBA, RGB, ALPHA, LUMINANCE, LUMINANCE_ALPHA, INTENSITY. | |||
2009-09-30 | mesa: replace gl_texture_format with gl_format | Brian Paul | |
Now gl_texture_image::TexFormat is a simple MESA_FORMAT_x enum. ctx->Driver.ChooseTexture format also returns a MESA_FORMAT_x. gl_texture_format will go away next. | |||
2009-09-28 | mesa: use _mesa_texstore() | Brian Paul | |
2009-09-27 | mesa: change _mesa_format_to_type_and_comps() format parameter type | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-06-24 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/i915/i915_tex_layout.c src/mesa/drivers/dri/i965/brw_wm_glsl.c src/mesa/drivers/dri/intel/intel_buffer_objects.c src/mesa/drivers/dri/intel/intel_pixel_bitmap.c src/mesa/drivers/dri/intel/intel_pixel_draw.c src/mesa/main/enums.c src/mesa/main/texstate.c src/mesa/vbo/vbo_exec_array.c | |||
2009-06-19 | Always free image offsets memory when re-initializing texture image fields. | Michel Dänzer | |
Fixes leak running compiz with direct rendering. | |||
2009-05-18 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
Conflicts: Makefile src/mesa/main/version.h | |||
2009-05-18 | mesa: comments for _mesa_generate_mipmap_level() | Brian Paul | |
2009-05-11 | mesa: updated comments for _mesa_generate_mipmap() | Brian Paul | |
2009-03-31 | fix ugly copy/paste error in mipmap generation code | Roland Scheidegger | |
2009-03-28 | mesa: add new signed rgba texture format | Roland Scheidegger | |
This is a (partial) backport of the signed texture format support in OGL 3.1. Since it wasn't promoted from an existing extension roll our own. | |||
2009-03-17 | mesa: update/fix doxygen comments | Vinson Lee | |
2009-03-12 | mesa: add support for ATI_envmap_bumpmap | Roland Scheidegger | |
add new entrypoints, new texture format, etc translate in texenvprogram.c for drivers using the mesa-generated tex env fragment program also handled in swrast, but not tested (cannot work due to negative texel results not handled correctly) | |||
2009-01-06 | mesa: Fix the size per pixel for packed pixel format data type. | Xiang, Haihao | |
2008-12-19 | Add do_row_3d for mipmapping 3D textures | Ian Romanick | |
Previously 3D textures were mipmapped using multiple passed through the 2D mipmap generation code. This had 3 disadvantages. First, the extra passes were slow. Second, this required the allocation of a temporary buffer to hold intermediate data. Third, and most important, the extra passes caused loss of additional bits due to integer division / bit-shifting. With this change, our mipmapgen conformance test passes for non-compressed texture formats. | |||
2008-12-19 | Fix typeo in mipmap filter for GL_UNSIGNED_SHORT_1_5_5_5_REV | Ian Romanick | |
2008-09-23 | mesa: Apply MSVC portability fixes from Alan Hourihane. | José Fonseca | |
2008-09-21 | code refactoring, new next_mipmap_level_size() function | Brian | |
(cherry picked from commit c22d9152e33792ea58426c53bc9b96bf552b0b44) | |||
2008-09-21 | refactor code, export _mesa_generate_mipmap_level() | Brian | |
2008-09-21 | move _mesa_format_to_type_and_comps() to texformat.c | Brian | |
(cherry picked from commit 42eac65da45fb58bffdf94ab8f9860d8cee5b256) | |||
2008-09-21 | mesa: pull in mipmap.c changes from gallium-0.2 | Keith Whitwell | |
2008-05-09 | Remove unused texunit parameter to ctx->Driver.GenerateMipmap() | Brian | |
(cherry picked from commit c3395f4473c8fdf75d04c0dd72e687bc8d8127a7) | |||
2007-12-20 | [intel] Fix and reenable (software) SGIS_generate_mipmap | Eric Anholt | |
The core problem was that _mesa_generate_mipmap was not respecting RowStride of the source image. Additionally, the intel private data associated with the images (level and face) was not being initialized for the _mesa_generate_mipmap-generated images. | |||
2007-08-18 | some fixes for compressed cube maps (bug 11986) | Brian | |
2007-05-17 | make srcPtr param to make_1d_stack_mipmap() const | Brian | |
2007-05-16 | Initial implementation of MESA_texture_array | Ian Romanick | |
Shadow sampling from texture arrays is still not implemented. Everything else should be there, though. | |||
2007-02-05 | fix mem leak | Panagiotis Papadakos | |
2006-11-01 | update _mesa_select_tex_image() and _mesa_get_tex_image() | Brian Paul | |
2006-09-29 | Move mipmap generation functions, texture scaling functions into new | Brian Paul | |
mipmap.c file. |