summaryrefslogtreecommitdiff
path: root/src/mesa
AgeCommit message (Collapse)Author
2009-10-25mesa: remove _mesa_compressed_row_stride()Brian Paul
2009-10-25mesa: remove calls to _mesa_compressed_row_stride()Brian Paul
2009-10-25glide: remove _mesa_compressed_row_stride() callsBrian Paul
And fix incorrect first parameter.
2009-10-25mesa: remove _mesa_compressed_row_stride() callsBrian Paul
2009-10-25mesa: begin removing _mesa_compressed_row_stride() callsBrian Paul
Use equivalent _mesa_format_row_stride() function instead.
2009-10-25mesa: simplify texture_row_stride() helperBrian Paul
2009-10-25mesa: fix-up error checking related to compressed texture block sizeBrian Paul
2009-10-25mesa: clean-up, simplify compressed texture size checkingBrian Paul
2009-10-24mesa: remove _mesa_compressed_texture_size()Brian Paul
Use _mesa_format_image_size() instead.
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-22dri/drivers: update driNewRenderbuffer() to take a gl_formatBrian Paul
Now pass a specific MESA_FORMAT_x token to indicate the renderbuffer's format. This is better than passing a GLenum and having to guess the specific format. I'm unable to test all the drivers, but any issues should be easy to fix.
2009-10-22radeon: simplify radeon_create_renderbuffer()Brian Paul
2009-10-22r600: fix depth span macros for format changesAlex Deucher
2009-10-22radeon: fix some renderbuffer format bugsBrian Paul
2009-10-21i915: replace MESA_FORMAT_Z24_S8 with MESA_FORMAT_S8_Z24Brian Paul
And change parameter type.
2009-10-21radeon: get rid of z24s8 <-> s8z24 conversions in span codeBrian Paul
Can just use s8z24 everywhere. Note: the WRITE_DEPTH macro for R600 may need to be fixed.
2009-10-21radeon: replace MESA_FORMAT_Z24_S8 with MESA_FORMAT_S8_Z24Brian Paul
Core Mesa deals with MESA_FORMAT_S8_Z24 everywhere it should so we shouldn't have to use MESA_FORMAT_Z24_S8 anymore.
2009-10-21intel: use MESA_FORMAT_S8_Z24 format and avoid z24s8/s8z24 conversionsBrian Paul
2009-10-21i965: change parameter type to gl_formatBrian 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-15dri/common: updated #includesBrian Paul
2009-10-15dri/common: use _mesa_little_endian() and update commentsBrian Paul
2009-10-15dri/common: fix broken _dri_texformat_* initializationsBrian Paul
2009-10-14radeon: initialize renderbuffer Format field in radeon_create_renderbuffer()Brian Paul
Plus, use MESA_FORMAT_S8_Z24 everywhere.
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-05drivers: don't include texformat.hBrian Paul
And remove other unneeded #includes while we're at it.
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