summaryrefslogtreecommitdiff
path: root/src/mesa/main/texcompress.c
AgeCommit message (Collapse)AuthorFilesLines
2006-09-29Move mipmap generation functions, texture scaling functions into newBrian Paul1-0/+1
mipmap.c file.
2006-08-04more work for GL_EXT_texture_sRGB.Brian Paul1-0/+13
2006-05-09Add a new 'all' parameter to _mesa_get_compressed_formats() to indicate whetherBrian Paul1-11/+20
all formats or just those without restrictions/limitations should be returned. We want all when validating the internalFormat parameter to glCompressedTexImage2D but only want unrestricted formats when handling the GL_COMPRESSED_TEXTURE_FORMATS query.
2006-05-08More updates for texture compression.Brian Paul1-0/+47
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-08Fix a number of texture compression issues.Brian Paul1-40/+30
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
2005-02-11mesa-main-0-NULL.patch from Jeff MuizelaarKeith Whitwell1-1/+1
2004-08-25Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵Brian Paul1-0/+1
1015696)
2004-04-27Removed the old teximage code.Brian Paul1-48/+27
Moved all code related to specific texture compression modes into new texcompress_s3tc.c and texcompress_fxt1.c files (but not implemented).
2003-11-21more texture compressionDaniel Borca1-19/+46
2003-11-03small fixes wrt texture handlingDaniel Borca1-5/+5
2003-10-29texture compressionDaniel Borca1-0/+17
2003-07-17Merge Jose's documentation and core Mesa changes from embedded branchKeith Whitwell1-15/+29
2003-04-03some texture compression odds & endsBrian Paul1-6/+67
2003-03-24add 2, not 4, in _mesa_get_compressed_formats()Brian Paul1-4/+4
2002-10-24Header file clean-up:Brian Paul1-2/+2
1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc.
2002-10-18implement auto mipmap generation for compressed texturesBrian Paul1-10/+6
2002-09-27new texture compression infrastructureBrian Paul1-0/+159