index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
mesa
/
main
/
texstore.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
mesa: consolidate internal glCompressedTexSubImage1/2/3D code
Brian Paul
2012-06-06
1
-52
/
+17
*
mesa: consolidate internal glCompressedTexImage1/2/3D code
Brian Paul
2012-06-06
1
-49
/
+13
*
mesa: consolidate internal glTexSubImage1/2/3D code
Brian Paul
2012-06-06
1
-42
/
+8
*
mesa: consolidate internal glTexImage1/2/3D code
Brian Paul
2012-06-06
1
-65
/
+13
*
mesa: stop using MAX_WIDTH in texstore code
Brian Paul
2012-02-24
1
-6
/
+33
*
mesa: add special case in texstore.c for GL_LUMINANCE_ALPHA src image
Brian Paul
2012-02-22
1
-0
/
+26
*
mesa: consolidate general ubyte texstore code
Brian Paul
2012-01-30
1
-171
/
+71
*
mesa: use _mesa_pack_ubyte_rgba_rect() in texstore code
Brian Paul
2012-01-30
1
-219
/
+64
*
mesa: more use of _mesa_format_matches_format_and_type() in texstore code
Brian Paul
2012-01-27
1
-12
/
+7
*
mesa: more use of _mesa_format_matches_format_and_type() in texstore code
Brian Paul
2012-01-27
1
-19
/
+4
*
mesa: more use of _mesa_format_matches_format_and_type() in texstore code
Brian Paul
2012-01-27
1
-13
/
+7
*
mesa: more use of _mesa_format_matches_format_and_type() in texstore code
Brian Paul
2012-01-27
1
-18
/
+8
*
mesa: use _mesa_format_matches_format_and_type() in texstore code
Brian Paul
2012-01-27
1
-44
/
+4
*
mesa: Don't round-trip integer texture data through a floating point temp.
Eric Anholt
2012-01-27
1
-21
/
+24
*
mesa: use GL_MAP_INVALIDATE_RANGE_BIT in glTexImage paths
Brian Paul
2012-01-18
1
-2
/
+2
*
mesa: fix incorrect float vs. int values in a few places
Brian Paul
2012-01-12
1
-3
/
+3
*
mesa: Remove 'texelBytes' declarations that are only used in assertions.
Vinson Lee
2012-01-05
1
-68
/
+34
*
mesa: remove the dstX/Y/Zoffset params to _mesa_texstore() functions
Brian Paul
2012-01-02
1
-221
/
+96
*
mesa: simplify Driver.CompressedTex[Sub]Image function parameters
Brian Paul
2011-12-30
1
-43
/
+21
*
mesa: simplify Driver.TexImage() parameters
Brian Paul
2011-12-30
1
-12
/
+9
*
mesa: simplify Driver.TexSubImage() parameters
Brian Paul
2011-12-30
1
-12
/
+9
*
mesa: consolidate texstore functions
Brian Paul
2011-12-24
1
-331
/
+153
*
mesa: fix _mesa_store_texsubimage2d() for GL_TEXTURE_1D_ARRAY
Brian Paul
2011-12-24
1
-23
/
+44
*
mesa: add missing RG_INTEGER and some RED_INTEGER_EXT checks.
Dave Airlie
2011-12-10
1
-0
/
+12
*
mesa: remove TextureMemCpy driver hook
Brian Paul
2011-12-08
1
-3
/
+2
*
mesa: Fix assertions for block size handling in glCompressedTexSubImage2D.
Eric Anholt
2011-12-02
1
-2
/
+2
*
mesa: Fix glCompressedTexSubImage (and non-Sub) for height == 2 or 1.
Eric Anholt
2011-12-02
1
-1
/
+1
*
mesa: Fix glCompressedTexImage when dstRowStride != srcRowStride.
Eric Anholt
2011-12-02
1
-28
/
+9
*
mesa: fix some minor texstore comments
Brian Paul
2011-12-02
1
-3
/
+3
*
mesa: rename MESA_FORMAT_RG88_REV to MESA_FORMAT_RG88
Brian Paul
2011-12-02
1
-3
/
+3
*
mesa: rename MESA_FORMAT_RG88 to MESA_FORMAT_GR88
Brian Paul
2011-12-02
1
-5
/
+5
*
mesa: add support for GL_OES_compressed_ETC1_RGB8_texture
Chia-I Wu
2011-12-02
1
-0
/
+2
*
mesa: update texstore comments for R/G textures
Brian Paul
2011-11-28
1
-2
/
+2
*
mesa: handle MapTextureImage() failures in glTexImage code
Brian Paul
2011-11-28
1
-76
/
+123
*
mesa/format: add mesa MESA_FORMAT_ARGB2101010_UINT support.
Dave Airlie
2011-11-28
1
-0
/
+59
*
mesa: add MESA_FORMAT_RGBX8888 and MESA_FORMAT_RGBX8888_REV
Chia-I Wu
2011-11-27
1
-6
/
+15
*
mesa: Make formats.c "datatype" values match glGetTexLevelParameter return.
Eric Anholt
2011-11-22
1
-1
/
+6
*
mesa: Skip texstore for 0-sized texture data.
Eric Anholt
2011-10-26
1
-0
/
+9
*
mesa: move gl_texture_image::Data, RowStride, ImageOffsets to swrast
Brian Paul
2011-10-23
1
-1
/
+0
*
mesa: get rid of imageOffsets arrays in texstore code
Brian Paul
2011-10-05
1
-336
/
+197
*
mesa/texstore: add texstore paths for all the integer types.
Dave Airlie
2011-10-05
1
-12
/
+104
*
texstore: create texstore table on first access.
Dave Airlie
2011-10-05
1
-149
/
+120
*
mesa: fix warning (MSVC error) about void pointer arithmetic
Brian Paul
2011-10-03
1
-1
/
+1
*
mesa: When storing texture data for a 1D array, map each slice separately.
Eric Anholt
2011-10-03
1
-16
/
+52
*
mesa: convert _mesa_unpack_color_span_chan() to ubyte
Brian Paul
2011-09-20
1
-3
/
+3
*
mesa: s/_mesa_make_temp_chan_image()/_mesa_make_temp_ubyte_image()
Brian Paul
2011-09-20
1
-105
/
+105
*
mesa: use ctx->Driver.AllocTextureImageBuffer() to alloc texture memory
Brian Paul
2011-09-17
1
-32
/
+14
*
mesa: Remove GL_COLOR_INDEX from base format assertions
Ian Romanick
2011-09-06
1
-2
/
+0
*
mesa: Remove all mention of MESA_FORMAT_CI8
Ian Romanick
2011-08-29
1
-45
/
+0
*
mesa: Convert texstore.c to accessing textures using MapTextureImage.
Brian Paul
2011-08-29
1
-107
/
+231
[next]