Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-24 | mesa: minor clean-ups in _mesa_store_compressed_texsubimage2d() | Brian Paul | |
2009-10-24 | mesa: 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-24 | mesa: s/GLuint/gl_format/ | Brian Paul | |
2009-10-24 | mesa: move assertion after declaration | Brian Paul | |
2009-10-24 | mesa: remove hard-coded block sizes | Brian Paul | |
2009-10-24 | mesa: added _mesa_get_format_block_size() | Brian Paul | |
2009-10-24 | mesa: added _mesa_get_format_name() | Brian Paul | |
2009-10-24 | mesa: additional comments in format code | Brian Paul | |
2009-10-22 | dri/drivers: update driNewRenderbuffer() to take a gl_format | Brian 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-22 | radeon: simplify radeon_create_renderbuffer() | Brian Paul | |
2009-10-22 | r600: fix depth span macros for format changes | Alex Deucher | |
2009-10-22 | radeon: fix some renderbuffer format bugs | Brian Paul | |
2009-10-21 | i915: replace MESA_FORMAT_Z24_S8 with MESA_FORMAT_S8_Z24 | Brian Paul | |
And change parameter type. | |||
2009-10-21 | radeon: get rid of z24s8 <-> s8z24 conversions in span code | Brian Paul | |
Can just use s8z24 everywhere. Note: the WRITE_DEPTH macro for R600 may need to be fixed. | |||
2009-10-21 | radeon: replace MESA_FORMAT_Z24_S8 with MESA_FORMAT_S8_Z24 | Brian 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-21 | intel: use MESA_FORMAT_S8_Z24 format and avoid z24s8/s8z24 conversions | Brian Paul | |
2009-10-21 | i965: change parameter type to gl_format | Brian Paul | |
2009-10-21 | mesa: use MESA_FORMAT_X8_Z24 | Brian Paul | |
2009-10-21 | mesa: use MESA_FORMAT_X8_Z24 format | Brian Paul | |
2009-10-21 | mesa: added MESA_FORMAT_X8_Z24 format | Brian 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-15 | dri/common: updated #includes | Brian Paul | |
2009-10-15 | dri/common: use _mesa_little_endian() and update comments | Brian Paul | |
2009-10-15 | dri/common: fix broken _dri_texformat_* initializations | Brian Paul | |
2009-10-14 | radeon: initialize renderbuffer Format field in radeon_create_renderbuffer() | Brian Paul | |
Plus, use MESA_FORMAT_S8_Z24 everywhere. | |||
2009-10-08 | mesa: remove a bunch of gl_renderbuffer fields | Brian 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-06 | mesa: added MESA_FORMAT_XRGB8888 | Brian Paul | |
2009-10-06 | mesa: added case for MESA_FORMAT_SIGNED_RGBA_16 | Brian Paul | |
2009-10-06 | mesa: added MESA_FORMAT_SIGNED_RGBA_16 for accum buffers | Brian Paul | |
2009-10-06 | mesa: added _mesa_get_format_color_encoding() | Brian Paul | |
2009-10-06 | mesa: accept more pnames in _mesa_get_format_bits() | Brian Paul | |
2009-10-05 | drivers: don't include texformat.h | Brian Paul | |
And remove other unneeded #includes while we're at it. | |||
2009-10-05 | mesa: don't include texformat.h | Brian Paul | |
2009-10-05 | mesa: move _mesa_format_to_type_and_comps() to formats.c | Brian Paul | |
2009-10-05 | mesa: move gl_format_info struct to formats.c | Brian Paul | |
This is a private datatype. | |||
2009-10-05 | mesa: remove feature tests | Brian Paul | |
2009-10-05 | mesa: use FetchTexelf() instead of FetchTexelc() | Brian Paul | |
2009-10-05 | mesa: add parenthesis | Brian Paul | |
2009-10-05 | mesa: lift _mesa_set_fetch_functions() calls out of drivers | Brian Paul | |
Call it from in the main Mesa glTexImage functions. | |||
2009-10-05 | mesa: make _mesa_get_texel_fetch_func() static | Brian Paul | |
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: reformatting | Brian Paul | |
2009-10-01 | mesa: move mesa_set_fetch_functions() | Brian Paul | |
2009-10-01 | radeon: fix tx_table[] entry | Brian Paul | |
XXX need to still verify that the table entries are in correct order. | |||
2009-10-01 | savage: s/Xfree/_mesa_free/ | Brian Paul | |
2009-10-01 | mesa: simplify _mesa_compressed_texture_size() | Brian Paul | |
2009-10-01 | mesa: remove gl_texture_image::IsCompressed field | Brian Paul | |
Use _mesa_is_format_compressed() instead. | |||
2009-10-01 | mesa: added _mesa_format_row_stride() | Brian Paul | |
2009-10-01 | mesa: added _mesa_format_image_size() | Brian Paul | |
2009-09-30 | swrast: fix some texformat regressions | Brian Paul | |
Need to be careful with component ordering for MESA_FORMAT_RGB888 and MESA_FORMAT_RGBA8888. |