aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_cb_strings.c
Commit message (Collapse)AuthorAgeFilesLines
* s/Tungsten Graphics/VMware/José Fonseca2014-01-171-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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]>
* Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg2010-10-131-1/+1
|
* Merge branch 'gallium-embedded'José Fonseca2010-02-031-0/+1
|\
| * mesa: Add missing includes.José Fonseca2010-02-011-0/+1
| |
* | mesa/st: bump the gallium version numberKeith Whitwell2010-02-031-1/+1
|/ | | | | This is a very informal version number, but there have been enough changes that a bump is appropriate at this time.
* st/mesa: Remove unnecessary header from st_cb_strings.c.Vinson Lee2010-01-141-1/+0
|
* mesa/st: bump gallium version to 0.3Keith Whitwell2009-03-241-13/+2
| | | | | | | | | To distinguish from the -0.2 version still being maintained on the gallium-mesa-7.4 branch. There are already greater interface changes between these two branches than there were between -0.2 and -0.1. Also stop injecting Tungsten into the vendor string - the Gallium in the renderer string should be sufficient.
* gallium: Don't ask winsys name -- let pipe screen do that if it wants.José Fonseca2009-01-301-5/+2
| | | | Allows to leave screen->winsys NULL.
* gallium: make p_winsys internalZack Rusin2009-01-301-1/+2
| | | | | move it to pipe/internal/p_winsys_screen.h and start converting the state trackers to the screen usage
* mesa: bump gallium version string to 0.2Brian Paul2008-09-121-1/+1
|
* snprintf -> util_snprintfAlan Hourihane2008-05-021-6/+6
|
* gallium: start removing pipe_context->get_name/vendor/param/paramfBrian2008-02-271-4/+5
| | | | | These are now per-screen functions, not per-context. State tracker updated, code in drivers and p_context.h disabled.
* Use Gallium in the renderer stringkeithw2007-09-271-1/+2
|
* Need to store vendor and renderer strings in the context.Brian2007-08-221-8/+6
| | | | | | As it was, we always returned the same pointer. So glxinfo, which calls glGetString() before printing anything, was printing the same string for both vendor and renderer.
* Move string functions to state_tracker, add queries to pipe, winsys.Keith Whitwell2007-08-101-0/+86