diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2019-07-01 07:44:03 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2019-07-01 07:44:03 +0000 |
commit | 18d57bc9ab86b454092a62d5573b7012a6aae998 (patch) | |
tree | 2cf9dd7a55a09ae3efa98194411ecf6dd76a7261 | |
parent | bb8add1260bbb3a6532ed6ce925434a785cb34ed (diff) |
Import Mesa 19.0.8
-rw-r--r-- | lib/mesa/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mesa/meson.build b/lib/mesa/meson.build index 5286b91c6..09aad54a1 100644 --- a/lib/mesa/meson.build +++ b/lib/mesa/meson.build @@ -327,12 +327,12 @@ else with_egl = false endif -if with_egl and not (with_platform_drm or with_platform_surfaceless) +if with_egl and not (with_platform_drm or with_platform_surfaceless or with_platform_android) if with_gallium_radeonsi - error('RadeonSI requires drm or surfaceless platform when using EGL') + error('RadeonSI requires the drm, surfaceless or android platform when using EGL') endif if with_gallium_virgl - error('Virgl requires drm or surfaceless platform when using EGL') + error('Virgl requires the drm, surfaceless or android platform when using EGL') endif endif |