Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | s/Tungsten Graphics/VMware/ | José Fonseca | 2014-01-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tungsten Graphics Inc. was acquired by VMware Inc. in 2008. Leaving the old copyright name is creating unnecessary confusion, hence this change. This was the sed script I used: $ cat tg2vmw.sed # Run as: # # git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed # # Rename copyrights s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g /Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./ s/TUNGSTEN GRAPHICS/VMWARE/g # Rename emails s/[email protected]/[email protected]/ s/[email protected]/[email protected]/g s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/ s/jrfonseca\[email protected]/[email protected]/g s/keithw\[email protected]/[email protected]/g s/[email protected]/[email protected]/g s/thomas-at-tungstengraphics-dot-com/thellstom-at-vmware-dot-com/ s/[email protected]/[email protected]/ # Remove dead links s@Tungsten Graphics (http://www.tungstengraphics.com)@Tungsten Graphics@g # C string src/gallium/state_trackers/vega/api_misc.c s/"Tungsten Graphics, Inc"/"VMware, Inc"/ Reviewed-by: Brian Paul <[email protected]> | ||||
* | st/mesa: remove most of the ReadPixels code | Brian Paul | 2011-11-15 | 1 | -9/+0 |
| | | | | | We can use the core Mesa code for glReadPixels now. We just have to validate state and flush the bitmap cache before reading. | ||||
* | st/mesa: remove dependencies on code in st_cb_readpixels.c | Brian Paul | 2011-11-15 | 1 | -3/+0 |
| | | | | | | st_cb_readpixels.c is going away next. Acked-by: Eric Anholt <[email protected]> | ||||
* | st/mesa: Clean up header file inclusion in st_cb_readpixels.h. | Vinson Lee | 2010-12-20 | 1 | -1/+3 |
| | |||||
* | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | 2010-10-13 | 1 | -2/+2 |
| | |||||
* | st/mesa: Add missing header in st_cb_readpixels.h. | Vinson Lee | 2010-08-04 | 1 | -0/+4 |
| | | | | Include mtypes.h for GLcontext symbol. | ||||
* | st: implement GL_DEPTH_STENCIL format for glReadPixels and DrawPixels() | Brian Paul | 2009-04-07 | 1 | -1/+2 |
| | |||||
* | gallium: more elaborate tracking of front color buffer state | Brian Paul | 2008-04-09 | 1 | -0/+3 |
| | | | | | | | This fixes the case where the app calls SwapBuffers then calls glReadPixels to read the front color buffer. We now keep track of when the front buffer is a _logically_ copy of the back buffer (after SwapBuffers) and read from the back color buffer instead of the front. | ||||
* | make read_stencil_pixels() non-static | Brian | 2007-10-18 | 1 | -0/+6 |
| | |||||
* | glReadPixels | Brian | 2007-08-10 | 1 | -0/+36 |