summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texstore.c
Commit message (Expand)AuthorAgeFilesLines
* Replace the _mesa_*printf() wrappers with the plain libc versionsKristian Høgsberg2010-02-191-10/+10
* Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg2010-02-191-31/+31
* mesa: replace old MEMCPY macro with memcpyBrian Paul2010-02-191-2/+2
* Remove _mesa_memcpy in favor of plain memcpy.Kenneth Graunke2010-02-191-1/+1
* main: Fix compiler warning. No need to convert/store depthScale as GLfloat j...Karl Schultz2010-02-111-2/+2
* mesa: Use preprocessor to comment out code.Vinson Lee2010-01-171-2/+2
* mesa: Fix bad conversion in AL1616_REV texstore.Eric Anholt2009-12-021-8/+12
* AL1616: Fix cut-and-paste bugIan Romanick2009-11-171-2/+2
* Add MESA_FORMAT_XRGB8888_REV.Michel Dänzer2009-11-171-3/+8
* Move 'static' to start of declaration to silence compiler warningIan Romanick2009-11-161-1/+1
* AL1616: Add TexImage storage pathIan Romanick2009-11-161-0/+73
* mesa: fix _mesa_texstore_argb8888() for MESA_FORMAT_XRGB8888Brian Paul2009-10-291-1/+1
* mesa: Add MESA_FORMAT_Z24_X8.José Fonseca2009-10-291-1/+40
* mesa: move declaration to prevent unused var warningBrian Paul2009-10-291-1/+1
* mesa: Fix compilation errors and warnings when features are disabled.Chia-I Wu2009-10-291-11/+10
* mesa/main: Never return NULL in _mesa_get_texstore_func.Chia-I Wu2009-10-291-3/+25
* mesa: remove old, unused #defineBrian Paul2009-10-281-2/+0
* Merge branch 'texformat-rework'Brian Paul2009-10-281-686/+519
|\
| * mesa: choose texture format in core mesa, not driversBrian Paul2009-10-251-16/+0
| * mesa: begin removing _mesa_compressed_row_stride() callsBrian Paul2009-10-251-2/+2
| * mesa: simplify texture_row_stride() helperBrian Paul2009-10-251-10/+1
| * mesa: minor clean-ups in _mesa_store_compressed_texsubimage2d()Brian Paul2009-10-241-4/+5
| * mesa: remove hard-coded block sizesBrian Paul2009-10-241-5/+9
| * mesa: added MESA_FORMAT_X8_Z24 formatBrian Paul2009-10-211-0/+36
| * mesa: added MESA_FORMAT_XRGB8888Brian Paul2009-10-061-4/+19
| * mesa: added MESA_FORMAT_SIGNED_RGBA_16 for accum buffersBrian Paul2009-10-061-0/+1
| * mesa: don't include texformat.hBrian Paul2009-10-051-1/+0
| * mesa: lift _mesa_set_fetch_functions() calls out of driversBrian Paul2009-10-051-9/+0
| * mesa: removed gl_texture_image::CompressedSize fieldBrian Paul2009-10-011-37/+5
| * mesa: reformattingBrian Paul2009-10-011-22/+21
| * mesa: move mesa_set_fetch_functions()Brian Paul2009-10-011-81/+0
| * mesa: remove gl_texture_image::IsCompressed fieldBrian Paul2009-10-011-115/+92
| * mesa: remove MESA_FORMAT_RGBA4444Brian Paul2009-09-301-58/+0
| * mesa: remove GLchan-based formats; use hw 8-bit/channel formats insteadBrian Paul2009-09-301-164/+0
| * mesa: move texel fetch/store into new texfetch.[ch] filesBrian Paul2009-09-301-0/+1
| * mesa: replace gl_texture_format with gl_formatBrian Paul2009-09-301-161/+161
| * mesa: move StoreTexImageFunc typedef to .c fileBrian Paul2009-09-281-1/+7
| * mesa: make individual texstore functions staticBrian Paul2009-09-281-29/+28
| * mesa: new _mesa_texstore() functionBrian Paul2009-09-281-74/+73
| * mesa: sort texstore_funcs[] array, remove search loopBrian Paul2009-09-271-31/+42
| * mesa: use more mesa format functionsBrian Paul2009-09-271-19/+25
| * mesa: use new look-up table to get texel fetch/store funcsBrian Paul2009-09-271-16/+6
| * mesa: minor clean-up in _mesa_texstore_srgb8()Brian Paul2009-09-271-3/+1
| * mesa: use _mesa_get_texstore_func() to get texture image store funcBrian Paul2009-09-271-54/+82
| * mesa: move _mesa_get_texstore_func() to texstore.cBrian Paul2009-09-261-0/+85
| * mesa: begin removing dependencies on gl_texture_format in texstore codeBrian Paul2009-09-261-97/+144
* | Merge branch 'mesa_7_6_branch'Brian Paul2009-10-281-1/+5
|\ \ | |/ |/|
| * mesa: Fix memory leak if we run out of memoryVinson Lee2009-10-281-1/+5
* | mesa/main: Make FEATURE_convolve follow feature conventions.Chia-I Wu2009-09-241-2/+0
* | mesa: begin some texstore code refactoringBrian Paul2009-09-161-28/+25