From a5d942f7fd9130c0ade9ec0c43c5ab37313299fd Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 19 Sep 2017 12:26:05 +0200 Subject: [PATCH 1/3] mesalib: Enable Vulkan drivers Description of Vulkan API [1]: > Vulkan is a low-overhead, cross-platform 3D graphics and compute API. > Vulkan targets high-performance realtime 3D graphics applications such > as video games and interactive media across all platforms. Compared > with OpenGL and Direct3D 11 and like Direct3D 12 and Mantle, Vulkan is > intended to offer higher performance and more balanced CPU/GPU usage. > Other major differences from Direct3D 11 (and prior) and OpenGL are > Vulkan being a considerably lower level API and offering parallel > tasking. Vulkan also has the ability to render 2D graphics > applications, however it is generally suited for 3D. In addition to > its lower CPU usage, Vulkan is also able to better distribute work > amongst multiple CPU cores. [1] https://en.wikipedia.org/wiki/Vulkan_(API) --- mesalib.be0 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mesalib.be0 b/mesalib.be0 index 203ecd7b9..ee6efd7b9 100755 --- a/mesalib.be0 +++ b/mesalib.be0 @@ -63,7 +63,8 @@ mee_configure() { --enable-glx-tls \ --with-llvm-shared-libs \ --with-egl-platforms="drm,x11" \ - --with-gallium-drivers="nouveau,r600,radeonsi,svga,swrast" + --with-gallium-drivers="nouveau,r600,radeonsi,svga,swrast" \ + --with-vulkan-drivers="intel,radeon" } #mee_build() { From ddf40124a8160a45bfeb7908526957db856a20da Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 19 Sep 2017 12:26:49 +0200 Subject: [PATCH 2/3] mesalib: Update version from 17.1.8 to 17.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release notes [1]: > Mesa 17.2.1 Release Notes / September 17, 2017 > > […] > > ### Bug fixes ### > > > • Bug 100613 - Regression in Mesa 17 on s390x (zSystems) > • Bug 101709 - [llvmpipe] piglit gl-1.0-scissor-offscreen regression > • Bug 102454 - glibc 2.26 doesn't provide anymore xlocale.h > • Bug 102467 - src/mesa/state_tracker/st_cb_readpixels.c:178]: (warning) Redundant assignment > • Bug 102502 - [bisected] Kodi crashes since commit 707d2e8b - gallium: fold u_trim_pipe_prim call from st/mesa to drivers > > […] [1] https://www.mesa3d.org/relnotes/17.2.1.html --- mesalib.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesalib.be0 b/mesalib.be0 index ee6efd7b9..b678ea344 100755 --- a/mesalib.be0 +++ b/mesalib.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION mesalib-17.1.8-0 +# BEE_VERSION mesalib-17.2.1-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) From 08b94dfb090865df7c397a707459ba97a63eaeef Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 19 Sep 2017 13:53:29 +0200 Subject: [PATCH 3/3] mesalib: Replace deprecated switch name Address the warning below. ``` configure: WARNING: --with-egl-platforms is deprecated. Use --with-platforms instead. ``` --- mesalib.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesalib.be0 b/mesalib.be0 index b678ea344..af67688d5 100755 --- a/mesalib.be0 +++ b/mesalib.be0 @@ -62,7 +62,7 @@ mee_configure() { --enable-xa \ --enable-glx-tls \ --with-llvm-shared-libs \ - --with-egl-platforms="drm,x11" \ + --with--platforms="drm,x11" \ --with-gallium-drivers="nouveau,r600,radeonsi,svga,swrast" \ --with-vulkan-drivers="intel,radeon" }