| Commit message (Expand) | Author | Age | Files | Lines |
* | mesa: allow buffers mapped with the persistent flag to be used by the GPU | Marek Olšák | 2014-02-25 | 1 | -1/+1 |
* | mesa: Fix MESA_FORMAT_Z24_UNORM_S8_UINT vs. X8_UINT mix-up. | Kenneth Graunke | 2014-02-09 | 1 | -1/+1 |
* | mesa: Change many Type P MESA_FORMATs to meet naming spec | Mark Mueller | 2014-01-27 | 1 | -2/+2 |
* | mesa: Rename 4 color component unsigned byte MESA_FORMATs | Mark Mueller | 2014-01-27 | 1 | -2/+2 |
* | mesa: change gl_format to mesa_format | Mark Mueller | 2014-01-27 | 1 | -3/+3 |
* | mesa: remove outdated version lines in comments | Rico Schüller | 2013-06-05 | 1 | -1/+0 |
* | mesa: Restore 78-column wrapping of license text in C-style comments. | Kenneth Graunke | 2013-04-23 | 1 | -3/+4 |
* | mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability. | Kenneth Graunke | 2013-04-23 | 1 | -1/+1 |
* | mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text. | Kenneth Graunke | 2013-04-23 | 1 | -1/+1 |
* | mesa: refactor clamping controls, get rid of _ClampReadColor | Marek Olšák | 2013-04-06 | 1 | -2/+3 |
* | mesa: add common format-independent memcpy-based ReadPixels path | Marek Olšák | 2013-03-23 | 1 | -34/+160 |
* | mesa: add a common function returning transfer ops for ReadPixels | Marek Olšák | 2013-03-23 | 1 | -20/+74 |
* | mesa: Drop manual checks for outside begin/end. | Eric Anholt | 2013-01-21 | 1 | -1/+1 |
* | readpix: allow implementation format/type | Jordan Justen | 2013-01-20 | 1 | -1/+6 |
* | extensions: enable EXT_color_buffer_float for ES3 | Jordan Justen | 2013-01-20 | 1 | -0/+2 |
* | readpix: check FBO completeness before trying to access the read-buffer | Jordan Justen | 2013-01-20 | 1 | -9/+9 |
* | readpix: add error checking for GLES3 | Jordan Justen | 2013-01-20 | 1 | -0/+56 |
* | mesa: Return INVALID_ENUM for glReadPixels(..., GL_DEPTH_*, ...) on ES 3 | Matt Turner | 2013-01-15 | 1 | -9/+13 |
* | mesa: Fix segfault on reading from a missing color read buffer. | Eric Anholt | 2012-11-17 | 1 | -11/+11 |
* | mesa: move _mesa_es_error_check_format_and_type() to glformats.c | Brian Paul | 2012-09-26 | 1 | -1/+0 |
* | mesa: move GL_HALF_FLOAT_OES definition to glheader.h | Brian Paul | 2012-09-26 | 1 | -5/+0 |
* | Don't cast the return value of malloc/realloc | Matt Turner | 2012-09-05 | 1 | -5/+5 |
* | mesa/es: Validate glReadPixels format and type in Mesa code rather than the E... | Ian Romanick | 2012-08-29 | 1 | -0/+33 |
* | mesa ReadPixels: handle signed/unsigned integer clamping | Jordan Justen | 2012-08-14 | 1 | -3/+10 |
* | mesa pack: handle uint and int clamping properly | Jordan Justen | 2012-08-14 | 1 | -2/+2 |
* | mesa: Make more consistent use of _mesa_is_{user,winsys}_fbo() | Paul Berry | 2012-07-26 | 1 | -1/+3 |
* | mesa: add glformats integer type/format detection routines | Jordan Justen | 2012-07-21 | 1 | -3/+4 |
* | mesa: Check for framebuffer completeness before looking at the rb. | Eric Anholt | 2012-05-17 | 1 | -6/+6 |
* | mesa: add a couple fast-paths to fast_read_rgba_pixels_memcpy() | Brian Paul | 2012-04-17 | 1 | -7/+55 |
* | mesa: use _mesa_rebase_rgba_float/uint() in glReadPixels code | Brian Paul | 2012-03-08 | 1 | -0/+4 |
* | mesa: Don't disable fast path for normalized types | Neil Roberts | 2012-02-28 | 1 | -7/+15 |
* | mesa: stop using MAX_WIDTH in glReadPixels code | Brian Paul | 2012-02-24 | 1 | -45/+75 |
* | mesa: remove unused _mesa_error_check_format_type() function | Brian Paul | 2012-02-07 | 1 | -117/+0 |
* | mesa: stop using _mesa_error_check_format_type() in glReadPixels | Brian Paul | 2012-02-07 | 1 | -2/+7 |
* | mesa: remove redundant format/type checks in glReadPixels() | Brian Paul | 2012-02-07 | 1 | -35/+0 |
* | mesa: new _mesa_error_check_format_and_type() function | Brian Paul | 2012-02-07 | 1 | -4/+5 |
* | mesa: remove byteswap check in fast_read_rgba_pixels_memcpy() | Brian Paul | 2012-01-27 | 1 | -5/+0 |
* | mesa: added swapBytes parameter to _mesa_format_matches_format_and_type() | Brian Paul | 2012-01-27 | 1 | -1/+2 |
* | mesa: remove LSB-first pixel packing check in glReadPixels | Brian Paul | 2012-01-27 | 1 | -2/+1 |
* | mesa: Throw the required error for glReadPixels() from a multisampled FBO. | Eric Anholt | 2012-01-12 | 1 | -0/+5 |
* | mesa: rename _mesa_unpack_int_rgba_row() to _mesa_unpack_uint_rgba_row() | Brian Paul | 2012-01-09 | 1 | -1/+1 |
* | mesa: use malloc instead of MAX_WIDTH array in glReadPixels() | Brian Paul | 2011-12-08 | 1 | -9/+14 |
* | mesa: Make formats.c "datatype" values match glGetTexLevelParameter return. | Eric Anholt | 2011-11-22 | 1 | -2/+2 |
* | mesa: handle MapRenderbuffer() failures in glReadPixels | Brian Paul | 2011-11-19 | 1 | -0/+45 |
* | mesa: make slow_read_rgba_pixels() a void function | Brian Paul | 2011-11-19 | 1 | -3/+1 |
* | Revert "read_rgba_pixels: Don't force clamping if the renderbuffer is normali... | Michel Dänzer | 2011-11-17 | 1 | -2/+1 |
* | read_rgba_pixels: Don't force clamping if the renderbuffer is normalized. | Michel Dänzer | 2011-11-17 | 1 | -1/+2 |
* | mesa: initialize stencilMap, Stride if stencilRb==depthRb | Brian Paul | 2011-11-16 | 1 | -0/+4 |
* | mesa: don't map depth+stencil buffer twice in glReadPixels() | Brian Paul | 2011-11-16 | 1 | -3/+11 |
* | mesa: move swrast ReadPixels code into core Mesa | Brian Paul | 2011-11-15 | 1 | -0/+484 |