summaryrefslogtreecommitdiff
path: root/src/mesa/main
AgeCommit message (Collapse)Author
2009-10-24mesa: remove ctx->Driver.CompressedTextureSize() hookBrian Paul
It always just called _mesa_compressed_texture_size() anyway.
2009-10-24mesa: change compressed texture size callsBrian Paul
Replace calls to ctx->Driver.CompressedTextureSize with calls to _mesa_format_image_size. The former always called the later.
2009-10-24mesa: minor clean-ups in _mesa_store_compressed_texsubimage2d()Brian Paul
2009-10-24mesa: simplify _mesa_compressed_row_stride(), _mesa_compressed_image_address()Brian Paul
_mesa_compressed_row_stride() can go away soon. _mesa_compressed_image_address() can be generalized and moved to formats.c
2009-10-24mesa: s/GLuint/gl_format/Brian Paul
2009-10-24mesa: move assertion after declarationBrian Paul
2009-10-24mesa: remove hard-coded block sizesBrian Paul
2009-10-24mesa: added _mesa_get_format_block_size()Brian Paul
2009-10-24mesa: added _mesa_get_format_name()Brian Paul
2009-10-24mesa: additional comments in format codeBrian Paul
2009-10-21mesa: use MESA_FORMAT_X8_Z24Brian Paul
2009-10-21mesa: use MESA_FORMAT_X8_Z24 formatBrian Paul
2009-10-21mesa: added MESA_FORMAT_X8_Z24 formatBrian Paul
24-bit Z in 32-bit pixel. We could probably use the MESA_FORMAT_S8_Z24 format but this there's a few places where we explicitly don't want stencil. This format may go away at some point in the future.
2009-10-08mesa: remove a bunch of gl_renderbuffer fieldsBrian Paul
_ActualFormat is replaced by Format (MESA_FORMAT_x). ColorEncoding, ComponentType, RedBits, GreenBits, BlueBits, etc. are all replaced by MESA_FORMAT_x queries.
2009-10-06mesa: added MESA_FORMAT_XRGB8888Brian Paul
2009-10-06mesa: added case for MESA_FORMAT_SIGNED_RGBA_16Brian Paul
2009-10-06mesa: added MESA_FORMAT_SIGNED_RGBA_16 for accum buffersBrian Paul
2009-10-06mesa: added _mesa_get_format_color_encoding()Brian Paul
2009-10-06mesa: accept more pnames in _mesa_get_format_bits()Brian Paul
2009-10-05mesa: don't include texformat.hBrian Paul
2009-10-05mesa: move _mesa_format_to_type_and_comps() to formats.cBrian Paul
2009-10-05mesa: move gl_format_info struct to formats.cBrian Paul
This is a private datatype.
2009-10-05mesa: remove feature testsBrian Paul
2009-10-05mesa: use FetchTexelf() instead of FetchTexelc()Brian Paul
2009-10-05mesa: add parenthesisBrian Paul
2009-10-05mesa: lift _mesa_set_fetch_functions() calls out of driversBrian Paul
Call it from in the main Mesa glTexImage functions.
2009-10-05mesa: make _mesa_get_texel_fetch_func() staticBrian Paul
2009-10-01mesa: removed gl_texture_image::CompressedSize fieldBrian Paul
Just call ctx->Driver.CompressedTextureSize() when we need to get the compressed image size.
2009-10-01mesa: reformattingBrian Paul
2009-10-01mesa: move mesa_set_fetch_functions()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-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-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-28mesa: make individual texstore functions staticBrian 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: update commentsBrian Paul
2009-09-27mesa: use more mesa format functionsBrian Paul
2009-09-27mesa: fix GL_TEXTURE_LUMINANCE_SIZE queryBrian Paul