diff options
author | Keith Whitwell <[email protected]> | 2010-03-28 09:53:58 -0700 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-03-28 10:42:38 -0700 |
commit | db5c2235d1accc2adcf1746aec2342bfa67237ba (patch) | |
tree | 1dcfbcda4288341b53f51c9f88c8ac2fae978f3a /src/gallium/targets/SConscript | |
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 'src/gallium/targets/SConscript')
-rw-r--r-- | src/gallium/targets/SConscript | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/targets/SConscript b/src/gallium/targets/SConscript index 747e64508f7..1292d4f6193 100644 --- a/src/gallium/targets/SConscript +++ b/src/gallium/targets/SConscript @@ -10,6 +10,11 @@ if 'gdi' in env['winsys']: 'libgl-gdi/SConscript', ]) +if 'graw-xlib' in env['winsys']: + SConscript([ + 'graw-xlib/SConscript', + ]) + if env['dri']: SConscript([ 'SConscript.dri' |