diff options
author | José Fonseca <[email protected]> | 2010-04-10 03:01:30 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-04-11 17:17:35 +0900 |
commit | 47a89e9255846f55efe0992c94b65ae7c911dbb3 (patch) | |
tree | 91e7ccf0cb9136189b3ae44bd5c7333a8446f7c8 /src/gallium/targets/libgl-gdi | |
parent | 21780adc2ed1b10c5c4c71427b8212b8464d065d (diff) |
scons: Always build softpipe and llvmpipe (when llvm available).
These are our reference software rasterizers. They can build everywhere
and are a precious debugging tool.
Making them always present immensily simplifies the scons logic.
If people want to avoid building it is still possible to pass
direcotries and target names to scons to narrow the build.
Diffstat (limited to 'src/gallium/targets/libgl-gdi')
-rw-r--r-- | src/gallium/targets/libgl-gdi/SConscript | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gallium/targets/libgl-gdi/SConscript b/src/gallium/targets/libgl-gdi/SConscript index a6ef1f2406a..2a55c7a5776 100644 --- a/src/gallium/targets/libgl-gdi/SConscript +++ b/src/gallium/targets/libgl-gdi/SConscript @@ -22,18 +22,14 @@ if env['platform'] == 'windows': sources = [] drivers = [] - if 'softpipe' in env['drivers']: + if True: sources = ['gdi_softpipe_winsys.c'] drivers = [softpipe] - if 'llvmpipe' in env['drivers']: + if env['llvm']: sources = ['gdi_llvmpipe_winsys.c'] drivers = [llvmpipe] - if not sources or not drivers: - print 'warning: softpipe or llvmpipe not selected, gdi winsys disabled' - Return() - if env['gcc']: sources += ['#src/gallium/state_trackers/wgl/opengl32.mingw.def'] else: |