summaryrefslogtreecommitdiffstats
path: root/src/gallium/tests/graw/SConscript
Commit message (Collapse)AuthorAgeFilesLines
* scons: whitespace cleanupGiuseppe Bilotta2016-05-251-1/+1
| | | | | | | | | | This text transformation was done automatically via the following shell command: $ find -name SCons\* -exec sed -i s/\\s\\+$// '{}' \; Signed-off-by: Giuseppe Bilotta <[email protected]> Reviewed-by: Brian Paul <[email protected]>
* gallium: Move sRGB <-> RGB handling to libmesautilJason Ekstrand2014-08-041-1/+1
| | | | | Signed-off-by: Jason Ekstrand <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
* llvmpipe: support 8bit subpixel precisionZack Rusin2013-11-251-0/+1
| | | | | | | | | | | | | 8 bit precision is required by d3d10 but unfortunately requires 64 bit rasterizer. This commit implements 64 bit rasterization with full support for 8bit subpixel precision. It's a combination of all individual commits from the llvmpipe-rast-64 branch. Signed-off-by: Zack Rusin <[email protected]> Reviewed-by: José Fonseca <[email protected]> Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Roland Scheidegger <[email protected]>
* graw: Simple utilities to dump and disassemble TGSI tokens.José Fonseca2013-04-251-0/+1
| | | | | Useful for core dumps, where calling tgsi_dump() from gdb is not an alternative.
* tests/graw: Add a bunch of tests.José Fonseca2012-02-221-5/+11
| | | | | | | | These were rotting in an internal branch, but contain nothing confidential, and would be much more useful if kept up-to-date with latest gallium interface changes. Several authors including Keith Whitwell, Zack Rusin, and Brian Paul.
* scons: Fix immediate Python exceptions with SCons on SunOS.Vinson Lee2011-03-081-1/+1
| | | | The build still fails.
* gallium: implement modern sampling schemeZack Rusin2011-01-241-0/+1
| | | | | | | | | | | 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]
* scons: Revamp how to specify targets to build.José Fonseca2010-11-011-14/+12
| | | | | | | | | | | | | | | | | | | | | | 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.
* graw: added test for finding shader mem leaksBrian Paul2010-09-091-0/+1
|
* graw: Undo late loading of graw drivers.José Fonseca2010-08-261-1/+8
| | | | | | | | | | 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.
* graw: Dynamically load graw libraries.José Fonseca2010-08-261-8/+1
| | | | | | | | | 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.
* scons: Fix freebsd8 build.Vinson Lee2010-08-111-1/+4
|
* scons: Fix sunos5 build.Vinson Lee2010-07-271-0/+3
|
* graw: new tri-instanced.c program to test instanced drawingBrian Paul2010-07-151-0/+1
|
* graw: Add gallium library to SCons build.Vinson Lee2010-06-071-1/+1
| | | | Fixes MSVC SCons build.
* graw: add gs-test.c and some simple geometry shader examplesKeith Whitwell2010-06-071-2/+3
|
* graw: trivial geometry shader testKeith Whitwell2010-06-071-0/+1
|
* test/graw: add vp-testKeith Whitwell2010-06-071-1/+2
|
* tests/graw: add fp-testKeith Whitwell2010-06-071-0/+1
|
* graw: add quad-tex graw test for basic texturingKeith Whitwell2010-05-141-1/+2
|
* graw: move towards glut-like interface, add tri.cKeith Whitwell2010-05-141-1/+2
|
* tests/graw: raw -> grawJosé Fonseca2010-05-111-0/+23
for consistency