Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-05-09 | Remove unused texunit parameter to ctx->Driver.GenerateMipmap() | Brian | |
(cherry picked from commit c3395f4473c8fdf75d04c0dd72e687bc8d8127a7) | |||
2008-05-09 | Added ctx->Driver.GenerateMipmap() driver hook | Dave Airlie | |
(cherry picked from commit 4c2f3dbca940f289e67248682b84a3516d5a3031) Conflicts: src/mesa/drivers/common/driverfuncs.c | |||
2008-02-25 | Change GetCompressedTexImage in dd_function_table to not take const pointers. | Kristian Høgsberg | |
They're changed by the intel driver implementation and thus not const. Fixes compilation warning. | |||
2008-02-13 | _mesa_swizzle_ubyt_image: Don't use single swizzle_copy call | Xiang, Haihao | |
if components don't match. fix #13508 | |||
2008-02-08 | Remove unused texunit parameter to ctx->Driver.GenerateMipmap() | Brian | |
2008-02-06 | Added ctx->Driver.GenerateMipmap() driver hook | Brian | |
2007-12-05 | Fix endianness bug in _mesa_texstore_argb8888() | Brian | |
On big-endian, storing in _mesa_texformat_argb8888 format produced wrong res Also, clean-up nearby code to match. picked from gallium-0.1 branch | |||
2007-12-05 | Fix endianness bug in _mesa_texstore_argb8888() | Brian | |
On big-endian, storing in _mesa_texformat_argb8888 format produced wrong results. Also, clean-up nearby code to match. | |||
2007-07-08 | Change float depthScale param to _mesa_unpack_depth_span() to GLuint depthMax. | Brian | |
2007-04-09 | i915tex: Make sure texture format fetch hooks are initialized. | Michel Dänzer | |
2007-03-21 | mesa: revert f9f79c8d770e696249bd98c68b563f887562c974 | Xiang, Haihao | |
to fix #10232 Table6.1(in gl2.1) has been applied for glGetTexImage before calling into _mesa_pack_rgba_span_float. | |||
2007-03-17 | fix some format conversion bugs in glGetTexImage(), bug 10288 | Haihao Xiang | |
2007-03-09 | New IMAGE_RED_TO_LUMINANCE flag passed to _mesa_pack_rgba_span_float() to ↵ | Brian | |
fix glGetTexImage(GL_LUMINANCE) bug #10232. | |||
2006-12-14 | _mesa_swizzle_ubyte_image: Only use single swizzle_copy call when strides match. | Michel Dänzer | |
This fixes texture data corruption with glTexSubimage (and probably glTexImage under some circumstances) with the texstore swizzle path. | |||
2006-11-02 | comment about a valgrind error | Brian Paul | |
2006-10-13 | In _mesa_pack_rgba_span_float() we don't need to make a temporary copy of | Brian Paul | |
incoming colors when applying pixel transfer ops. In all cases, the caller either indicates there's no pixel transfer ops, or the incoming colors are coming from temporary storage already and can be safely modified. | |||
2006-09-29 | Move mipmap generation functions, texture scaling functions into new | Brian Paul | |
mipmap.c file. | |||
2006-09-25 | Fix and re-enable swizzling paths for big endian platforms. | Michel Dänzer | |
2006-09-21 | replace assert(0) with error report, improved comments, etc | Brian Paul | |
2006-09-21 | Fix incorrect byteswap_mapping(). Disable swizzle path on bigEndian | Keith Whitwell | |
until someone can figure out whats wrong there. | |||
2006-09-21 | use new _mesa_little_endian() function | Brian Paul | |
2006-09-21 | Fix the dstMap for rgb888 and bgr888 texture formats, which are the | Keith Whitwell | |
opposite to what you'd naively expect. | |||
2006-09-20 | Deal with the overloading of _mesa_texstore_rgba, which is actually | Keith Whitwell | |
used to store all sorts of formats. Software mesa fails the glean pixelFormats test, but it appears to be failing even with the swizzle code disabled?? | |||
2006-09-20 | Extend swizzle support to all remaining source formats and texture | Keith Whitwell | |
destination formats. | |||
2006-09-20 | Support both big and little endian, more source types and more | Keith Whitwell | |
destination formats through the swizzle path. It would be great to see this tested on eg, PPC machines... | |||
2006-09-20 | reenable code in _mesa_texstore_rgba8888 to avoid the generic copy path if ↵ | Roland Scheidegger | |
only swizzling is required as it works just fine (tested with glean pixelFormats test and a hacked up r200 driver which always uses that format). | |||
2006-09-20 | Fix various typos to pass glean pixelFormats test. | Keith Whitwell | |
2006-09-20 | Enhance compute_component_mapping() to convert to and from any of the | Keith Whitwell | |
color base formats. | |||
2006-09-20 | Fix _mesa_swizzle_ubyte_image() to deal with RGBA->RGB->RGBA | Keith Whitwell | |
conversions, ensuring that the final A value is 0xff in those cases where we use a RGBA hardware texture format to store RGB textures. Fix a couple of cases where hardwired texture conversions were ignoring this restriction. | |||
2006-09-13 | detect some more cases which can use straight memcpy for _mesa_texstore_rgba8888 | Roland Scheidegger | |
2006-08-10 | finish up texstore for SL8 texture format | Brian Paul | |
2006-08-09 | implement some of the sRGB texstore functions | Brian Paul | |
2006-08-04 | more work for GL_EXT_texture_sRGB. | Brian Paul | |
2006-08-03 | Initial work for GL_EXT_texture_sRGB. | Brian Paul | |
2006-07-19 | For glGetTexImage(), move the _mesa_validate_pbo_access() error check into | Brian Paul | |
_mesa_GetTexImage() so it's not needed in the fallback or driver functions. | |||
2006-05-20 | In gl_texture_image, replace ImageStride with an ImageOffsets array. | Brian Paul | |
Some hardware lays out 3D mipmaps in a manner that can't be expressed with a simple image stride. The ImageOffsets array is allocated and initialized to typical defaults in the _mesa_init_teximage_fields() function. If needed, a driver will then have to replace these offsets. TexStore and TexelFetch routines updated to use offsets array. | |||
2006-05-08 | two more texture compression fixes | Brian Paul | |
2006-05-08 | More updates for texture compression. | Brian Paul | |
Added _mesa_compressed_texture_size_glenum() for validating the imageSize parameter to glCompressedTex[Sub]Image1/2/3() which does _not_ call ctx->Driver.CompressedTextureSize() - since that could return a padded size. | |||
2006-05-08 | Fix a number of texture compression issues. | Brian Paul | |
Pass the MESA_FORMAT_* token to the _mesa_compressed_row_stride(), _mesa_compressed_texture_size() and _mesa_compressed_image_address() functions since we want to use the driver-chosen format, not the user's internalFormat hint. Consolidate code related to choosing the texture format in texstoree.c | |||
2006-04-26 | fix a few stride computations in _mesa_texstore_rgba() | Brian Paul | |
2006-04-06 | Replace MESA_FORMAT_DEPTH_COMPONENT_FLOAT32 with 32-bit integer format. | Brian Paul | |
This allows render to depth texture (we don't support floating pt. Z buffers). Rename MESA_FORMAT_DEPTH_COMPONENT16/32 as MESA_FORMAT_Z16/32. Software fallback for glCopyTexImage now uses integer temporary image instead of float, eliminates a lot of float/int conversions. | |||
2006-03-29 | fix components initialization in two places (Ewald Snel) | Brian Paul | |
2006-03-29 | new tests for GL_DEPTH_STENCIL_EXT | Brian Paul | |
2006-03-26 | merge from texman branch | Brian Paul | |
2006-03-16 | finish up some loose ends in _mesa_texstore_z24_s8() | Brian Paul | |
2005-12-01 | remove uintptr_t cast | Brian Paul | |
2005-10-05 | fix byteswapping bug in _mesa_texstore_ycbcr() (Benjamin Herrenschmidt) | Brian Paul | |
2005-10-05 | In gl_texture_image replace IntFormat with InternalFormat and Format with | Brian Paul | |
_BaseFormat to be consistant with gl_renderbuffer. | |||
2005-10-01 | added _mesa_texstore_z24_s8() | Brian Paul | |
2005-09-28 | Initial work for GL_EXT_packed_depth_stencil extension. | Brian Paul | |
glReadPixels done, glDrawPixels mostly done. |