Re: [Mesa-dev] [PATCH 1/5] mesa: change ctx->Color.ColorMask into a 32-bit bitmask

2018-02-03 Thread Eric Anholt
Marek Olšák writes: > From: Marek Olšák > > 4 bits per draw buffer, 8 draw buffers in total --> 32 bits. > > This is easier to work with. > diff --git a/src/mesa/drivers/dri/nouveau/nouveau_driver.c > b/src/mesa/drivers/dri/nouveau/nouveau_driver.c >

Re: [Mesa-dev] [PATCH] mesa: enable ASTC format for CompressedTexSubImage3D

2018-02-03 Thread Eric Anholt
"Juan A. Suarez Romero" writes: > If extensions GL_KHR_texture_compression_astc_hdr or > GL_KHR_texture_compression_astc_sliced_3d are implemented then ASTC > format are supported in CompressedTex*Îmage3D. > > Fixes KHR-GLES2.texture_3d.* with this format. Reviewed-by: Eric

Re: [Mesa-dev] [PATCH] i965: Enable disk shader cache by default

2018-02-03 Thread Jordan Justen
On 2018-02-03 14:24:06, Jason Ekstrand wrote: > On February 3, 2018 13:59:40 Jordan Justen wrote: > > > Signed-off-by: Jordan Justen > > Reviewed-by: Timothy Arceri > > --- > > docs/relnotes/18.1.0.html

Re: [Mesa-dev] [PATCH] i965: Enable disk shader cache by default

2018-02-03 Thread Jason Ekstrand
On February 3, 2018 13:59:40 Jordan Justen wrote: Signed-off-by: Jordan Justen Reviewed-by: Timothy Arceri --- docs/relnotes/18.1.0.html | 1 + src/mesa/drivers/dri/i965/brw_disk_cache.c | 3 --- 2

[Mesa-dev] [PATCH] gallium/hud: update some query functions

2018-02-03 Thread Grazvydas Ignotas
It seems these were missed when struct pipe_context * argument was added to hud_graph::query_new_value. Fixes: 3132afdf4c "gallium/hud: pass pipe_context explicitly to most functions" --- src/gallium/auxiliary/hud/hud_cpufreq.c | 2 +- src/gallium/auxiliary/hud/hud_diskstat.c | 2 +-

[Mesa-dev] [PATCH] radeonsi: set indent_size in .editorconfig

2018-02-03 Thread Grazvydas Ignotas
At least with vim, this is needed to actually get tab instead of 3 spaces after hitting the tab key. --- src/gallium/drivers/radeonsi/.editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/radeonsi/.editorconfig b/src/gallium/drivers/radeonsi/.editorconfig index

[Mesa-dev] [PATCH] intel/compiler: fix 64bit value prints on 32bit

2018-02-03 Thread Grazvydas Ignotas
Fix the following: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘uint64_t {aka long long unsigned int}. --- src/intel/compiler/brw_disasm.c | 4 ++-- src/intel/compiler/brw_nir_analyze_ubo_ranges.c | 2 +- 2 files changed, 3

[Mesa-dev] [PATCH] radeonsi: avoid int-to-pointer-cast warnings on 32bit

2018-02-03 Thread Grazvydas Ignotas
I hope the actual dropping of MSB is ok, but that's what's already happened before this change. --- src/gallium/drivers/radeonsi/si_descriptors.c | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_descriptors.c

[Mesa-dev] [PATCH] i965: Enable disk shader cache by default

2018-02-03 Thread Jordan Justen
Signed-off-by: Jordan Justen Reviewed-by: Timothy Arceri --- docs/relnotes/18.1.0.html | 1 + src/mesa/drivers/dri/i965/brw_disk_cache.c | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git

Re: [Mesa-dev] [PATCH] meson: better defaults for osx, windows and cygwin

2018-02-03 Thread Jon Turney
On 03/02/2018 18:07, Dylan Baker wrote: Quoting Jon Turney (2018-02-03 05:49:40) - if not ['darwin', 'windows'].contains(host_machine.system()) + if not ['darwin', 'windows', 'cygwin'].contains(host_machine.system()) +# TODO: PPC, Sparc if ['x86',

[Mesa-dev] [Bug 101806] plasma 5: system settings crashes when I leave desktop effects kcm

2018-02-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=101806 --- Comment #3 from Strangiato --- Crash is still happening on Arch Linux running mesa 17.3.3-2. -- You are receiving this mail because: You are the assignee for the bug. You are the QA Contact for the

Re: [Mesa-dev] [PATCH] meson: better defaults for osx, windows and cygwin

2018-02-03 Thread Dylan Baker
Quoting Jon Turney (2018-02-03 05:49:40) > set suitable defaults for 'dri-drivers', 'gallium-drivers', 'vulkan-drivers' > and 'platforms' options for osx, windows and cygwin, adding cygwin where > appropriate. > > Signed-off-by: Jon Turney > --- > meson.build | 15

Re: [Mesa-dev] [PATCH] anv: Do color resolve tracking one slice at a time for 3D images

2018-02-03 Thread Jason Ekstrand
I've pushed a new branch with just this series (not the GENERAL layout stuff): https://cgit.freedesktop.org/~jekstrand/mesa/log/?h=wip/anv-resolve-rework On Fri, Feb 2, 2018 at 11:04 PM, Jason Ekstrand wrote: > On Fri, Feb 2, 2018 at 6:55 PM, Nanley Chery

[Mesa-dev] A request for help with compilation of 17.3.3

2018-02-03 Thread Zbigniew
Hello, from what I see in archives mesa-users seems a bit neglected, and I cannot expect any reply there anytime soon. Perhaps anyone here could help me? I wanted to replace somewhat dated Mesa 11 with newest 17.3.3 - so I took it from "Slackware 64 current" repository to create package, but

Re: [Mesa-dev] [PATCH 6/6] travis: add macOS meson build

2018-02-03 Thread Jon Turney
On 01/02/2018 13:13, Emil Velikov wrote: On 28 January 2018 at 14:24, Jon Turney wrote: --- .travis.yml | 5 + 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 9cecf2f615f..7e6bbfe306b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -403,6 +403,11 @@ matrix:

[Mesa-dev] [PATCH] meson: better defaults for osx, windows and cygwin

2018-02-03 Thread Jon Turney
set suitable defaults for 'dri-drivers', 'gallium-drivers', 'vulkan-drivers' and 'platforms' options for osx, windows and cygwin, adding cygwin where appropriate. Signed-off-by: Jon Turney --- meson.build | 15 --- 1 file changed, 8 insertions(+), 7

[Mesa-dev] [Bug 104928] libglvnd_1.0.0 disables amdgpu direct rendering

2018-02-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=104928 Bug ID: 104928 Summary: libglvnd_1.0.0 disables amdgpu direct rendering Product: Mesa Version: git Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW

Re: [Mesa-dev] [PATCH 3/9] glsl/lower_64bit: extract non-64bit sources from vectors.

2018-02-03 Thread Gustaw Smolarczyk
2018-02-03 11:26 GMT+01:00 Erik Faye-Lund : > > > On Feb 1, 2018 04:35, "Dave Airlie" wrote: > > From: Dave Airlie > > In order to deal with conversions properly we need to extract > non-64bit sources from vectors instead of expanding

[Mesa-dev] [Bug 104926] swrast: Mesa 17.3.3 produces: HW cursor for format 875713089 not supported

2018-02-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=104926 Bug ID: 104926 Summary: swrast: Mesa 17.3.3 produces: HW cursor for format 875713089 not supported Product: Mesa Version: 17.3 Hardware: Other OS: All

Re: [Mesa-dev] [PATCH v2 00/22] Introducing SPIR-V support to clover

2018-02-03 Thread Tomeu Vizoso
On 24 January 2018 at 08:19, Tomeu Vizoso wrote: > On 01/24/2018 12:03 AM, Karol Herbst wrote: >> >> On Tue, Jan 23, 2018 at 11:46 PM, Francisco Jerez >> wrote: >>> >>> Pierre Moreau writes: >>> On 2018-01-23 —

Re: [Mesa-dev] [PATCH 3/9] glsl/lower_64bit: extract non-64bit sources from vectors.

2018-02-03 Thread Erik Faye-Lund
On Feb 1, 2018 04:35, "Dave Airlie" wrote: From: Dave Airlie In order to deal with conversions properly we need to extract non-64bit sources from vectors instead of expanding them as the 64-bit code does. We need non-64bit sources for the 32->64

Re: [Mesa-dev] [PATCH 2/7] gallium: use PIPE_CAP_CONSTBUF0_FLAGS

2018-02-03 Thread Axel Davy
On 02/02/2018 23:41, Marek Olšák wrote: On Fri, Feb 2, 2018 at 10:44 PM, Axel Davy wrote: Hi Marek, Since the previous patch makes it mandatory to use the flags when required, I guess this patch should also add the neccessary changes to gallium nine. Nine uses user