Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Update the changelog
· 112d24e0
Timo Aaltonen
authored
Sep 18, 2018
112d24e0
move enable-nine to the gallium confflags.
· c9e9eb42
Timo Aaltonen
authored
Sep 18, 2018
c9e9eb42
rules: Enable v3d on arm. Thanks, Fabio Pedretti!
· 71daac93
Timo Aaltonen
authored
Sep 18, 2018
71daac93
rules: Drop enabling texture float, it's enabled by default now.
· 53b076dd
Timo Aaltonen
authored
Sep 18, 2018
53b076dd
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
53b076dd
...
...
@@ -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
...
...
debian/rules
View file @
53b076dd
...
...
@@ -56,9 +56,9 @@ else
GALLIUM_DRIVERS += freedreno
endif
# tegra and v
c4
kernel support are only available on armhf and arm64
# tegra
, vc4
and v
3d
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) \
...
...