diff options
author | Dylan Baker <[email protected]> | 2017-10-25 16:54:53 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-11-28 14:06:26 -0800 |
commit | 9169dde94149abe519cf1d1da7e388d0e200fa3f (patch) | |
tree | 0d04380abc3f172a704014ffa76d3849ce3e4708 /src/gallium/meson.build | |
parent | c5d199fa2ca612acd22f7ff2fc584b9110bbbd44 (diff) |
meson: build i915g driver
Build tested only.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/meson.build')
-rw-r--r-- | src/gallium/meson.build | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gallium/meson.build b/src/gallium/meson.build index 07a97f72490..581f701b30b 100644 --- a/src/gallium/meson.build +++ b/src/gallium/meson.build @@ -70,8 +70,9 @@ endif if with_gallium_imx subdir('winsys/imx/drm') endif -if with_glx == 'gallium-xlib' - subdir('winsys/sw/xlib') +if with_gallium_i915 + subdir('winsys/i915/drm') + subdir('drivers/i915') endif if with_dri subdir('state_trackers/dri') @@ -80,9 +81,9 @@ if with_osmesa == 'gallium' subdir('state_trackers/osmesa') endif if with_glx == 'gallium-xlib' + subdir('winsys/sw/xlib') subdir('state_trackers/glx/xlib') endif -# TODO: i915 # TODO: SVGA # TODO: r300 # TODO: r600 |