summaryrefslogtreecommitdiff
path: root/src/gallium/tests/graw/vs-test.c
AgeCommit message (Collapse)Author
2010-11-08graw: Export graw_save_surface_to_file().Michal Krol
Allows applications to dump surfaces to file without referencing gallium/auxiliary entry points statically. Existing test apps have been modified such that they save the contents of the fronbuffer only when the `-o' option's specified.
2010-08-26graw: Undo late loading of graw drivers.José Fonseca
Keith prefers a clean separation between graw applications and implementations, where apps do not link libgallium.a but instead get all functionality they need via graw interface. Although this is not incompatible with late loading of graw drivers, it it would make it very hard to maintain, as wrappers for every utility symbol exposed in graw would have to be written or generated somehow.
2010-08-26graw: Dynamically load graw libraries.José Fonseca
This allows to build multiple graws libs simultaneously and avoid unnecessary rebuilds of the tests. Also remove graw_util.c from inside the graw implementation -- it was only being provided by one implementation, and graw tests were linking against gallium anyway.
2010-07-29graw/tests: Use pipe_context::draw_vbo.Chia-I Wu
The other drawing variants such as draw_arrays or draw_elements_instanced were removed. This fixes fdo bug #29287.
2010-06-07graw: Fix file handle leaks.Vinson Lee
2010-06-07graw: add gs-test.c and some simple geometry shader examplesKeith Whitwell