mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 22:10:10 +01:00
For a long time, we've wanted a place to put utility code which isn't directly tied to Mesa or Gallium internals. This patch creates a new src/util directory for exactly that purpose, and builds the contents as libmesautil.la. ralloc seemed like a good first candidate. These days, it's directly used by mesa/main, i965, i915, and r300g, so keeping it in src/glsl didn't make much sense. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> v2 (Jason Ekstrand): More realloc uses and some scons fixes Signed-off-by: Jason Ekstrand <jason.ekstrand@intel.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
Import('*')
|
|
|
|
|
|
if env['platform'] == 'windows':
|
|
SConscript('getopt/SConscript')
|
|
|
|
SConscript('util/SConscript')
|
|
SConscript('glsl/SConscript')
|
|
|
|
if env['hostonly']:
|
|
# We are just compiling the things necessary on the host for cross
|
|
# compilation
|
|
Return()
|
|
|
|
SConscript('loader/SConscript')
|
|
|
|
# When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not
|
|
# used. libgl-xlib and libgl-gdi adapt themselves to use the targets defined
|
|
# in mapi/glapi-shared/SConscript. mesa/SConscript also adapts itself to
|
|
# enable OpenGL ES support.
|
|
SConscript('mapi/glapi/gen/SConscript')
|
|
SConscript('mapi/glapi/SConscript')
|
|
|
|
# Haiku C++ libGL dispatch (renderers depend on libgl)
|
|
if env['platform'] in ['haiku']:
|
|
SConscript('hgl/SConscript')
|
|
|
|
SConscript('mesa/SConscript')
|
|
|
|
SConscript('mapi/vgapi/SConscript')
|
|
|
|
if not env['embedded']:
|
|
if env['platform'] not in ('cygwin', 'darwin', 'freebsd', 'haiku', 'windows'):
|
|
SConscript('glx/SConscript')
|
|
if env['platform'] not in ['darwin', 'haiku', 'sunos']:
|
|
SConscript('egl/main/SConscript')
|
|
|
|
if env['gles']:
|
|
SConscript('mapi/shared-glapi/SConscript')
|
|
|
|
SConscript('gallium/SConscript')
|
|
|