Skip to content
Commits on Source (4)
......@@ -5,6 +5,10 @@ mesa (18.2.0-2) UNRELEASED; urgency=medium
* control: Build-depend on x11proto-dev, modify libegl1-mesa-dev and
libgl1-mesa-dev depends.
* Migrate to llvm/clang-7.
* Enable gallium D3D state tracker, thanks Antonio Russo and Andrew
Cook! (Closes: #863972)
* rules: Enable v3d on arm. Thanks, Fabio Pedretti!
* rules: Drop enabling texture float, it's enabled by default now.
-- Timo Aaltonen <tjaalton@debian.org> Mon, 17 Sep 2018 15:46:55 +0300
......
......@@ -56,9 +56,9 @@ else
GALLIUM_DRIVERS += freedreno
endif
# tegra and vc4 kernel support are only available on armhf and arm64
# tegra, vc4 and v3d kernel support are only available on armhf and arm64
ifneq (,$(filter $(DEB_HOST_ARCH), armhf arm64))
GALLIUM_DRIVERS += tegra vc4
GALLIUM_DRIVERS += tegra vc4 v3d
endif
# etnaviv kernel support is currently only available on armhf
......@@ -118,6 +118,7 @@ else
confflags_GALLIUM += --enable-va
confflags_GALLIUM += --enable-gallium-extra-hud
confflags_GALLIUM += --enable-lmsensors
confflags_GALLIUM += --enable-nine
with_libva = ,libva
endif
......@@ -139,10 +140,8 @@ confflags += \
--with-vulkan-drivers="$(VULKAN_DRIVERS)" \
--enable-libglvnd \
--enable-osmesa \
--enable-nine \
--enable-glx-tls \
--enable-shared-glapi \
--enable-texture-float \
--disable-xvmc \
--disable-omx-bellagio \
$(confflags_DIRECT_RENDERING) \
......