summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_cb_strings.c
AgeCommit message (Collapse)Author
2010-10-13Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg
2010-02-03Merge branch 'gallium-embedded'José Fonseca
2010-02-03mesa/st: bump the gallium version numberKeith Whitwell
This is a very informal version number, but there have been enough changes that a bump is appropriate at this time.
2010-02-01mesa: Add missing includes.José Fonseca
2010-01-14st/mesa: Remove unnecessary header from st_cb_strings.c.Vinson Lee
2009-03-24mesa/st: bump gallium version to 0.3Keith Whitwell
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.
2009-01-30gallium: Don't ask winsys name -- let pipe screen do that if it wants.José Fonseca
Allows to leave screen->winsys NULL.
2009-01-30gallium: make p_winsys internalZack Rusin
move it to pipe/internal/p_winsys_screen.h and start converting the state trackers to the screen usage
2008-09-12mesa: bump gallium version string to 0.2Brian Paul
2008-05-02snprintf -> util_snprintfAlan Hourihane
2008-02-27gallium: start removing pipe_context->get_name/vendor/param/paramfBrian
These are now per-screen functions, not per-context. State tracker updated, code in drivers and p_context.h disabled.
2007-09-27Use Gallium in the renderer stringkeithw
2007-08-22Need to store vendor and renderer strings in the context.Brian
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.
2007-08-10Move string functions to state_tracker, add queries to pipe, winsys.Keith Whitwell