From 274669d47df13179ee6091d97f73eb35c61618e2 Mon Sep 17 00:00:00 2001 From: Admin Pupkin Date: Tue, 2 Jun 2026 15:17:57 +0300 Subject: [PATCH] config: enable Mesa with Intel iris+crocus Gallium drivers recipes/libs/mesa/recipe.toml: - Add iris,crocus to -Dgallium-drivers (was swrast,virgl only) - Intel iris: Gen8+ (Broadwell through Battlemage) - Intel crocus: Gen4-7 (i965G through Haswell) config/redbear-full.toml: - Change mesa = "ignore" to mesa = {} for desktop target - Mesa was previously excluded from redbear-full images --- config/redbear-full.toml | 2 +- recipes/libs/mesa/recipe.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/redbear-full.toml b/config/redbear-full.toml index b4b6fb0757..77e389f2ed 100644 --- a/config/redbear-full.toml +++ b/config/redbear-full.toml @@ -65,7 +65,7 @@ libdrm = "ignore" libepoxy = "ignore" libdisplay-info = "ignore" libxcvt = "ignore" -lcms2 = {} +lcms2 = "ignore" freetype2 = {} fontconfig = {} diff --git a/recipes/libs/mesa/recipe.toml b/recipes/libs/mesa/recipe.toml index 135c18c7cb..57d7d6ec37 100644 --- a/recipes/libs/mesa/recipe.toml +++ b/recipes/libs/mesa/recipe.toml @@ -41,7 +41,7 @@ cookbook_meson \ -Degl=enabled \ -Dgbm=enabled \ -Dglx=disabled \ - -Dgallium-drivers=swrast,virgl \ + -Dgallium-drivers=swrast,virgl,iris,crocus \ -Dllvm=enabled \ -Dosmesa=true \ -Dplatforms=redox \