summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/readpix.c
Commit message (Expand)AuthorAgeFilesLines
* mesa: remove null check before freeThomas Hindoe Paaboel Andersen2016-05-051-2/+1
* mesa: use sizeof on the correct typeThomas Hindoe Paaboel Andersen2016-02-231-1/+1
* mesa/readpix: Dedent former _mesa_readpixels() if blockNanley Chery2016-02-091-29/+29
* mesa/readpix: Don't clip in _mesa_readpixels()Nanley Chery2016-02-091-13/+7
* mesa/readpix: Clip ReadPixels() area to the ReadBuffer'sNanley Chery2016-02-091-2/+5
* mesa: support GL_RED/GL_RG in ES2 contexts when driver support existsIlia Mirkin2015-11-281-1/+1
* mesa: fix errors when reading depth with glReadPixelsTapani Pälli2015-09-181-0/+1
* mesa/readpixels: check strides are equal before skipping conversionDave Airlie2015-09-021-1/+2
* mesa: fix SwapBytes handling in numerous placesDave Airlie2015-09-021-9/+2
* mesa/formats: remove compressed formats from matching functionNanley Chery2015-08-251-1/+1
* mesa: add NV_read_{depth,stencil,depth_stencil} extensionsRob Clark2015-08-121-9/+39
* mesa: Avoid double promotion.Matt Turner2015-07-291-2/+2
* mesa: Change the signature of _mesa_need_rgb_to_luminance_conversion()Anuj Phogat2015-07-241-13/+15
* mesa: Add a helper function _mesa_need_luminance_to_rgb_conversion()Anuj Phogat2015-07-241-0/+18
* mesa: Turn get_readpixels_transfer_ops() in to a global functionAnuj Phogat2015-07-241-7/+9
* mesa: Rename _mesa_lookup_enum_by_nr() to _mesa_enum_to_string().Kenneth Graunke2015-07-201-6/+6
* mesa: remove unnecessary checks in _mesa_readpixels_needs_slow_pathIago Toral Quiroga2015-06-261-16/+0
* mesa: Turn need_rgb_to_luminance_conversion() in to a global functionAnuj Phogat2015-06-151-5/+6
* mesa: Use helper function need_rgb_to_luminance_conversion()Anuj Phogat2015-06-151-7/+4
* mesa: Handle integer formats in need_rgb_to_luminance_conversion()Anuj Phogat2015-06-151-1/+4
* main: Refactor _mesa_get_clamp_read_color.Laura Ekstrand2015-05-141-2/+2
* mesa: Free memory allocated for luminance in readpixels.Matt Turner2015-03-021-0/+1
* mesa: Use assert() instead of ASSERT wrapper.Matt Turner2015-02-231-6/+6
* mesa: Fix element count for byte-swaps in texstore, readpix and texgetimageIago Toral Quiroga2015-02-161-5/+8
* mesa: rename RGBA8888_* format constants to something appropriate.Iago Toral Quiroga2015-01-141-3/+3
* mesa: use _mesa_format_convert to implement glReadPixels.Iago Toral Quiroga2015-01-121-142/+184
* mesa: allow buffers mapped with the persistent flag to be used by the GPUMarek Olšák2014-02-251-1/+1
* mesa: Fix MESA_FORMAT_Z24_UNORM_S8_UINT vs. X8_UINT mix-up.Kenneth Graunke2014-02-091-1/+1
* mesa: Change many Type P MESA_FORMATs to meet naming specMark Mueller2014-01-271-2/+2
* mesa: Rename 4 color component unsigned byte MESA_FORMATsMark Mueller2014-01-271-2/+2
* mesa: change gl_format to mesa_formatMark Mueller2014-01-271-3/+3
* mesa: remove outdated version lines in commentsRico Schüller2013-06-051-1/+0
* mesa: Restore 78-column wrapping of license text in C-style comments.Kenneth Graunke2013-04-231-3/+4
* mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability.Kenneth Graunke2013-04-231-1/+1
* mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text.Kenneth Graunke2013-04-231-1/+1
* mesa: refactor clamping controls, get rid of _ClampReadColorMarek Olšák2013-04-061-2/+3
* mesa: add common format-independent memcpy-based ReadPixels pathMarek Olšák2013-03-231-34/+160
* mesa: add a common function returning transfer ops for ReadPixelsMarek Olšák2013-03-231-20/+74
* mesa: Drop manual checks for outside begin/end.Eric Anholt2013-01-211-1/+1
* readpix: allow implementation format/typeJordan Justen2013-01-201-1/+6
* extensions: enable EXT_color_buffer_float for ES3Jordan Justen2013-01-201-0/+2
* readpix: check FBO completeness before trying to access the read-bufferJordan Justen2013-01-201-9/+9
* readpix: add error checking for GLES3Jordan Justen2013-01-201-0/+56
* mesa: Return INVALID_ENUM for glReadPixels(..., GL_DEPTH_*, ...) on ES 3Matt Turner2013-01-151-9/+13
* mesa: Fix segfault on reading from a missing color read buffer.Eric Anholt2012-11-171-11/+11
* mesa: move _mesa_es_error_check_format_and_type() to glformats.cBrian Paul2012-09-261-1/+0
* mesa: move GL_HALF_FLOAT_OES definition to glheader.hBrian Paul2012-09-261-5/+0
* Don't cast the return value of malloc/reallocMatt Turner2012-09-051-5/+5
* mesa/es: Validate glReadPixels format and type in Mesa code rather than the E...Ian Romanick2012-08-291-0/+33
* mesa ReadPixels: handle signed/unsigned integer clampingJordan Justen2012-08-141-3/+10