summaryrefslogtreecommitdiff
path: root/src/mesa
AgeCommit message (Collapse)Author
2009-10-01mesa: move mesa_set_fetch_functions()Brian Paul
2009-10-01radeon: fix tx_table[] entryBrian Paul
XXX need to still verify that the table entries are in correct order.
2009-10-01savage: s/Xfree/_mesa_free/Brian Paul
2009-10-01mesa: simplify _mesa_compressed_texture_size()Brian Paul
2009-10-01mesa: remove gl_texture_image::IsCompressed fieldBrian Paul
Use _mesa_is_format_compressed() instead.
2009-10-01mesa: added _mesa_format_row_stride()Brian Paul
2009-10-01mesa: added _mesa_format_image_size()Brian Paul
2009-09-30swrast: fix some texformat regressionsBrian Paul
Need to be careful with component ordering for MESA_FORMAT_RGB888 and MESA_FORMAT_RGBA8888.
2009-09-30mesa: rename texformat_tmp.h to texfetch_tmp.hBrian Paul
2009-09-30mesa: remove MESA_FORMAT_RGBA4444Brian Paul
Not used by any hardware driver. ARGB4444 and ARGB4444_REV remain.
2009-09-30mesa: remove GLchan-based formats; use hw 8-bit/channel formats insteadBrian Paul
Removed: MESA_FORMAT_RGBA, RGB, ALPHA, LUMINANCE, LUMINANCE_ALPHA, INTENSITY.
2009-09-30mesa: move texel fetch/store into new texfetch.[ch] filesBrian Paul
2009-09-30st/mesa: update commentBrian Paul
2009-09-30mesa: remove gl_texture_formatBrian Paul
2009-09-30mesa: replace gl_texture_format with gl_formatBrian 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-28mesa: move StoreTexImageFunc typedef to .c fileBrian Paul
2009-09-28mesa: use _mesa_texstore()Brian Paul
2009-09-28st/mesa: use _mesa_texstore()Brian Paul
2009-09-28mesa: make individual texstore functions staticBrian Paul
2009-09-28glide: use _mesa_texstore()Brian Paul
2009-09-28drivers: use _mesa_texstoreBrian Paul
2009-09-28drivers: use new _mesa_texstore() functionBrian Paul
2009-09-28mesa: new _mesa_texstore() functionBrian Paul
2009-09-27mesa: change _mesa_format_to_type_and_comps() format parameter typeBrian Paul
2009-09-27mesa: sort texstore_funcs[] array, remove search loopBrian Paul
2009-09-27mesa: fix render buffer _BaseFormat assignmentBrian Paul
2009-09-27mesa: use texture format functionsBrian Paul
2009-09-27mesa: update commentsBrian Paul
2009-09-27mesa: use more mesa format functionsBrian Paul
2009-09-27mesa: fix GL_TEXTURE_LUMINANCE_SIZE queryBrian Paul
2009-09-27mesa: use more mesa format functionsBrian Paul
2009-09-27mesa: use more mesa format functionsBrian Paul
2009-09-27mesa: use more format helper functionsBrian Paul
2009-09-27mesa: code movementBrian Paul
2009-09-27drivers: use more mesa format functionsBrian Paul
2009-09-27mesa/drivers: use _mesa_get_format_bytes()Brian Paul
2009-09-27mesa/drivers: use _mesa_get_format_bytes()Brian Paul
2009-09-27via: use mesa texture format helper functionsBrian Paul
2009-09-27glide: use _mesa_get_format_bytes()Brian Paul
2009-09-27mesa: use _mesa_get_format_base_format()Brian Paul
2009-09-27mesa: use _mesa_get_format_bytes()Brian Paul
2009-09-27mesa: added _mesa_get_format_datatype()Brian Paul
2009-09-27mesa: use _mesa_get_format_bits()Brian Paul
2009-09-27mesa: added _mesa_get_format_bits()Brian Paul
2009-09-27mesa: remove unused gl_texture_format fieldsBrian Paul
2009-09-27mesa: added MESA_FORMAT_NONEBrian Paul
2009-09-27mesa: move StoreTexImageFunc to texstore.hBrian Paul
2009-09-27mesa: rework null texel fetch/store funcsBrian Paul
2009-09-27mesa: replace function pointer types with void *Brian Paul
These fields are no longer used and will be removed soon.
2009-09-27st/mesa: use _mesa_get_texstore_func()Brian Paul