[Mesa-dev] [Bug 109446] Shadow of the Tomb Raider Trial freezes the system at startup

2019-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109446 --- Comment #1 from fin4...@hotmail.com --- I tested with a clean wine prefix, dxvk 0.96 and I have the same problem. When starting the game, I have the following lines in the virtual terminal: [drm:amdgpu_cs_ioctl [amdgpu]] *ERROR* Failed to

Re: [Mesa-dev] [PATCH 0/4] Common KMS renderonly support

2019-01-26 Thread Qiang Yu
Sorry, I missed this part of change and thought there's only kmsro_dri.so. Then there's no concern on my side. Thanks, Qiang Rob Herring 于 2019年1月27日周日 上午3:43写道: > On Fri, Jan 25, 2019 at 9:00 PM Qiang Yu wrote: > > > > Thanks Rob, I'm OK with this kmsro approach. > > > > But I have to point

Re: [Mesa-dev] [PATCH 0/4] Common KMS renderonly support

2019-01-26 Thread Rob Herring
On Fri, Jan 25, 2019 at 9:00 PM Qiang Yu wrote: > > Thanks Rob, I'm OK with this kmsro approach. > > But I have to point out that this will break XServer AIGLX: > 1. modesetting DDX will report the display drm driver name like meson > as DRI2 driver name > 2. libglx.so used by xserver will look

[Mesa-dev] [PATCH v2] nvc0: don't put text segment into bufctx

2019-01-26 Thread Ilia Mirkin
The text segment is shared among multiple contexts, while each one has its own bufctx. So when reallocating the text segment, some contexts may end up with stale values in their bufctx's. Instead limit the exposure to the bufctx to within a single draw. Signed-off-by: Ilia Mirkin --- v2:

Re: [Mesa-dev] [PATCH] nir: allow stitching of non-empty block

2019-01-26 Thread Jason Ekstrand
This makes me a bit nervous. I'll have to look at it in more detail. On January 25, 2019 09:37:52 "Juan A. Suarez Romero" wrote: When stitching two blocks A and B, where A's last instruction is a jump, it is not required that B is empty; it can be plainly removed. This can happen in a

Re: [Mesa-dev] [RFC 1/4] nir: Add a new intrinsic 'load_image_stride'

2019-01-26 Thread Jason Ekstrand
Mind suffixing it with _ir3 or something since it's a back-end-specific intrinsic? Incidentally, this looks a lot like load_image_param_intel. On January 25, 2019 07:48:54 Eduardo Lima Mitev wrote: This is an internal intrinsic intended to be injected by a (freedreno-specific)

[Mesa-dev] [Bug 77449] Tracker bug for all bugs related to Steam titles

2019-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77449 Kai changed: What|Removed |Added Depends on||109461 Referenced Bugs:

[Mesa-dev] [PATCH] intel/fs: Fix memory corruption when compiling a CS

2019-01-26 Thread Oscar Blumberg
Missing check for shader stage in the fs_visitor would corrupt the cs_prog_data.push information and trigger crashes / corruption later when uploading the CS state. --- src/intel/compiler/brw_fs_nir.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git

Re: [Mesa-dev] [PATCH 3/8] i965: Faking the ETC2 compression on Gen < 8 GPUs using two miptrees.

2019-01-26 Thread Eleni Maria Stea
Hi Nanley, On Fri, 18 Jan 2019 15:32:02 -0800 Nanley Chery wrote: > > diff --git a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c > > b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c index > > e214fae140..4d1eafac91 100644 --- > > a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c +++ > >

Re: [Mesa-dev] [PATCH] nir: allow stitching of non-empty block

2019-01-26 Thread Caio Marcelo de Oliveira Filho
This patch is Reviewed-by: Caio Marcelo de Oliveira Filho On Fri, Jan 25, 2019 at 06:37:33PM +0100, Juan A. Suarez Romero wrote: > When stitching two blocks A and B, where A's last instruction is a jump, > it is not required that B is empty; it can be plainly removed. > > This can happen in a

Re: [Mesa-dev] [PATCH] meson: Fix typo.

2019-01-26 Thread Eric Engestrom
On Saturday, 2019-01-26 00:50:40 -0800, Caio Marcelo de Oliveira Filho wrote: > This patch is > > Reviewed-by: Caio Marcelo de Oliveira Filho > > Since it fixes a patch that were marked for stable, maybe add CC: > stable for this one too? `Fixes:` already means it will be applied everywhere

Re: [Mesa-dev] [PATCH] meson: Fix typo.

2019-01-26 Thread Eric Engestrom
On Saturday, 2019-01-26 08:28:20 +, Vinson Lee wrote: > meson.build:166:21: ERROR: Unknown method "verson_compare" for a string. Oops, thanks for the patch. Reviewed-by: Eric Engestrom > > Fixes: c1efa240c91e ("meson: Add warnings and errors when using ICC") > Signed-off-by: Vinson Lee >

Re: [Mesa-dev] [PATCH] meson: Fix typo.

2019-01-26 Thread Caio Marcelo de Oliveira Filho
This patch is Reviewed-by: Caio Marcelo de Oliveira Filho Since it fixes a patch that were marked for stable, maybe add CC: stable for this one too? On Sat, Jan 26, 2019 at 08:28:20AM +, Vinson Lee wrote: > meson.build:166:21: ERROR: Unknown method "verson_compare" for a string. > >

Re: [Mesa-dev] [RFC 2/4] nir: Add a new ALU nir_op_imad

2019-01-26 Thread Eduardo Lima Mitev
On 1/25/19 6:46 PM, Eric Anholt wrote: > Eduardo Lima Mitev writes: > >> ir3 compiler has an integer multiply-add instruction (IMAD_S24) >> that is used for different offset calculations in the backend. >> Since we intend to move some of these calculations to NIR, we need >> a new ALU op that

Re: [Mesa-dev] [RFC 1/4] nir: Add a new intrinsic 'load_image_stride'

2019-01-26 Thread Eduardo Lima Mitev
On 1/25/19 6:42 PM, Eric Anholt wrote: > Eduardo Lima Mitev writes: > >> This is an internal intrinsic intended to be injected by a >> (freedreno-specific) 'lower_sampler_io' pass that will be introduced >> later in this series; and consumed by ir3_compiler_nir. >> >> The intrinsic will load in

[Mesa-dev] [PATCH] meson: Fix typo.

2019-01-26 Thread Vinson Lee
meson.build:166:21: ERROR: Unknown method "verson_compare" for a string. Fixes: c1efa240c91e ("meson: Add warnings and errors when using ICC") Signed-off-by: Vinson Lee --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index