summaryrefslogtreecommitdiff
path: root/src/mesa/main/texgetimage.c
AgeCommit message (Expand)AuthorFilesLines
2017-06-22Revert "getteximage: Return correct error value when texure object is not found"Juan A. Suarez Romero1-9/+3
2017-03-06getteximage: fix _mesa_GetTextureSubImage()Samuel Pitoiset1-1/+1
2017-03-06getteximage: avoid to lookup textures with id 0Samuel Pitoiset1-3/+7
2017-02-15getteximage: Return correct error value when texure object is not foundEduardo Lima Mitev1-2/+4
2017-02-03texgetimage: Add check for the effective target to GetTextureSubImageEduardo Lima Mitev1-0/+6
2016-11-24mesa/getteximage: Add validation of target to glGetTextureImageEduardo Lima Mitev1-0/+5
2016-11-23main/getteximage: Use the height argument to calculate memcpy copy sizeEduardo Lima Mitev1-1/+1
2016-08-29mesa: fix format conversion bug in get_tex_rgba_uncompressed()Brian Paul1-6/+8
2016-06-09mesa: Add a helper function for shared code in get_tex_rgba_{un}compressedAnuj Phogat1-45/+38
2016-05-05mesa: remove null check before freeThomas Hindoe Paaboel Andersen1-2/+1
2016-05-03mesa: Handle 3d block sizes in getteximage error checksAnuj Phogat1-4/+17
2016-02-12mesa: remove _ARB suffix from cube map enumsBrian Paul1-7/+7
2015-11-24texgetimage: consolidate 1D array handling code.Dave Airlie1-15/+11
2015-10-28mesa: minor formatting fix in get_tex_rgba_compressed()Brian Paul1-2/+1
2015-09-02mesa: handle SwapBytes in compressed texture get code.Dave Airlie1-0/+7
2015-09-02mesa: fix SwapBytes handling in numerous placesDave Airlie1-11/+3
2015-08-26mesa/texgetimage: fix missing stencil checkDave Airlie1-0/+7
2015-08-25mesa/formats: remove compressed formats from matching functionNanley Chery1-1/+1
2015-07-24mesa: fix error checking for getting zero-sized texture imagesIlia Mirkin1-9/+9
2015-07-23mesa: rearrange texture error checking orderIlia Mirkin1-13/+13
2015-07-23mesa: adjust error message when there's a missing teximageIlia Mirkin1-2/+1
2015-07-22mesa: fix typo s/glGetTextImage/glGetTexImage/Brian Paul1-1/+1
2015-07-21mesa: add new _mesa_Get[Compressed]TextureSubImage() functionsBrian Paul1-1/+61
2015-07-21mesa: overhaul the glGetCompressedTexImage codeBrian Paul1-142/+198
2015-07-21mesa: overhaul the glGetTexImage codeBrian Paul1-195/+428
2015-07-21mesa: 80-column wrapping in texgetimage.cBrian Paul1-5/+8
2015-07-21mesa: replace Driver.GetCompressedTexImage() w/ GetCompressedTexSubImage()Brian Paul1-12/+16
2015-07-21mesa: make _mesa_get_[compressed_]texture_image() staticBrian Paul1-12/+12
2015-07-21mesa: plumb offset/size parameters through GetTexSubImage codeBrian Paul1-57/+80
2015-07-21mesa: replace Driver.GetTexImage with GetTexSubImage()Brian Paul1-5/+10
2015-07-20mesa: Rename _mesa_lookup_enum_by_nr() to _mesa_enum_to_string().Kenneth Graunke1-2/+2
2015-05-28Revert "mesa: Add ARB_direct_state_access checks in texture functions"Ian Romanick1-14/+0
2015-05-14mesa: Add ARB_direct_state_access checks in texture functionsFredrik Höglund1-0/+14
2015-04-23mesa: finish implementing ARB_texture_stencil8 (v5)Dave Airlie1-1/+49
2015-04-22mesa: Fix typo in a commentAnuj Phogat1-2/+2
2015-03-09main: Checking for cube completeness in GetCompressedTextureImage.Laura Ekstrand1-1/+10
2015-03-09main: assert(texImage) in ARB_DSA texture cube map functions.Laura Ekstrand1-2/+3
2015-03-09main: Remove redundant copy of cube map block comment in GetTextureImage.Laura Ekstrand1-29/+3
2015-03-09main: Remove redundant NumLayers checks.Laura Ekstrand1-13/+0
2015-02-27mesa: silence unused var warning in get_tex_rgba_uncompressed()Brian Paul1-1/+2
2015-02-17main: Fixed _mesa_GetCompressedTexImage_sw to copy slices correctly.Laura Ekstrand1-2/+2
2015-02-16mesa: silence uninitialized var warning in get_tex_rgba_uncompressed()Brian Paul1-2/+1
2015-02-16mesa: Fix element count for byte-swaps in texstore, readpix and texgetimageIago Toral Quiroga1-5/+8
2015-01-21mesa: Fix some signed-unsigned comparison warningsJan Vesely1-3/+3
2015-01-14mesa: rename RGBA8888_* format constants to something appropriate.Iago Toral Quiroga1-2/+2
2015-01-12mesa: Use _mesa_format_convert to implement get_tex_rgba_compressed.Iago Toral Quiroga1-39/+34
2015-01-12mesa: use _mesa_format_convert to implement get_tex_rgba_uncompressed.Iago Toral Quiroga1-117/+133
2015-01-08mesa: fix MSVC compilation errorsBrian Paul1-5/+5
2015-01-08main: Checking for cube completeness in GetTextureImage.Laura Ekstrand1-12/+35
2015-01-08main: Added entry point for glGetCompressedTextureImage.Laura Ekstrand1-45/+121