summaryrefslogtreecommitdiff
path: root/src/gallium/tests/graw/SConscript
AgeCommit message (Collapse)Author
2011-03-08scons: Fix immediate Python exceptions with SCons on SunOS.Vinson Lee
The build still fails.
2011-01-24gallium: implement modern sampling schemeZack Rusin
largely a merge of the previously discussed origin/gallium-resource-sampling but updated. the idea is to allow arbitrary binding of resources, the way opencl, new gl versions and dx10+ require, i.e. DCL RES[0], 2D, FLOAT LOAD DST[0], SRC[0], RES[0] SAMPLE DST[0], SRC[0], RES[0], SAMP[0]
2010-11-01scons: Revamp how to specify targets to build.José Fonseca
Use scons target and dependency system instead of ad-hoc options. Now is simply a matter of naming what to build. For example: scons libgl-xlib scons libgl-gdi scons graw-progs scons llvmpipe and so on. And there is also the possibility of scepcified subdirs, e.g. scons src/gallium/drivers If nothing is specified then everything will be build. There might be some rough corners over the next days. Please bare with me.
2010-09-09graw: added test for finding shader mem leaksBrian Paul
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-08-11scons: Fix freebsd8 build.Vinson Lee
2010-07-27scons: Fix sunos5 build.Vinson Lee
2010-07-15graw: new tri-instanced.c program to test instanced drawingBrian Paul
2010-06-07graw: Add gallium library to SCons build.Vinson Lee
Fixes MSVC SCons build.
2010-06-07graw: add gs-test.c and some simple geometry shader examplesKeith Whitwell
2010-06-07graw: trivial geometry shader testKeith Whitwell
2010-06-07test/graw: add vp-testKeith Whitwell
2010-06-07tests/graw: add fp-testKeith Whitwell
2010-05-14graw: add quad-tex graw test for basic texturingKeith Whitwell
2010-05-14graw: move towards glut-like interface, add tri.cKeith Whitwell
2010-05-11tests/graw: raw -> grawJosé Fonseca
for consistency