diff options
author | Keith Whitwell <keithw@vmware.com> | 2010-03-28 09:53:58 -0700 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2010-03-28 10:42:38 -0700 |
commit | db5c2235d1accc2adcf1746aec2342bfa67237ba (patch) | |
tree | 1dcfbcda4288341b53f51c9f88c8ac2fae978f3a /SConstruct | |
parent | f97f46f269666b289f9af977e238ccda9b483c44 (diff) |
gallium: new raw gallium interface to support standalone tests
Provides basic window system integration behind a simple interface,
allowing tests to be written without dependency on either the driver
or window system.
With a lot of work, could turn into something like glut for gallium.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 2549a13fff..5d44b6efde 100644 --- a/SConstruct +++ b/SConstruct @@ -52,7 +52,7 @@ opts.Add(ListVariable('statetrackers', 'state trackers to build', default_statet opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers, ['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'identity', 'llvmpipe'])) opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys, - ['xlib', 'vmware', 'i915', 'i965', 'gdi', 'radeon'])) + ['xlib', 'vmware', 'i915', 'i965', 'gdi', 'radeon', 'graw-xlib'])) opts.Add(EnumVariable('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0'))) |