libgl-xlib: enable galahad support

If the GALLIUM_GALAHAD env var is 1 we'll wrap the regular driver with
the galahad validation driver.
This commit is contained in:
Brian Paul
2010-09-03 16:33:17 -06:00
parent 14056e052b
commit f1de38b851
3 changed files with 18 additions and 1 deletions

View File

@@ -48,6 +48,10 @@ if True:
env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE')
env.Prepend(LIBS = [softpipe])
if True:
env.Append(CPPDEFINES = 'GALLIUM_GALAHAD')
env.Prepend(LIBS = [galahad])
if env['llvm']:
env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')
env.Tool('udis86')