mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-24 22:30:31 +01:00
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.
27 lines
406 B
Python
27 lines
406 B
Python
Import('*')
|
|
|
|
if 'xlib' in env['winsys']:
|
|
SConscript([
|
|
'libgl-xlib/SConscript',
|
|
])
|
|
|
|
if 'gdi' in env['winsys']:
|
|
SConscript([
|
|
'libgl-gdi/SConscript',
|
|
])
|
|
|
|
if 'graw-xlib' in env['winsys']:
|
|
SConscript([
|
|
'graw-xlib/SConscript',
|
|
])
|
|
|
|
if env['dri']:
|
|
SConscript([
|
|
'SConscript.dri'
|
|
])
|
|
|
|
if 'xorg' in env['statetrackers']:
|
|
if 'vmware' in env['winsys']:
|
|
SConscript([
|
|
'xorg-vmwgfx/SConscript',
|
|
])
|