Re: [Mesa-dev] [PATCH 2/5] i965: Mark URB reads as volatile.

2016-04-24 Thread Eduardo Lima Mitev
Patches 1 and 2 are: Reviewed-by: Eduardo Lima Mitev On 04/22/2016 07:32 AM, Kenneth Graunke wrote: > They can be affected by URB writes. > > In the upcoming scalar TCS backend, this prevents read-modify-write > cycles from being broken by CSE removing reads. > > Signed-off-by: Kenneth Graunke

Re: [Mesa-dev] [PATCH 10/13] nir: verify destination bit size when checking algebraic optimizations

2016-04-24 Thread Samuel Iglesias Gonsálvez
On 24/04/16 06:49, Jason Ekstrand wrote: > On Apr 12, 2016 1:06 AM, "Samuel Iglesias Gonsálvez" > wrote: >> >> Some instructions (like flrp in i965) cannot be lowered depending on the >> bit size because it doesn't support all bit sizes. >> >> If the bit size field is defined in nir_opt_algebrai

Re: [Mesa-dev] [PATCH 06/13] nir/lower_double_ops: lower floor()

2016-04-24 Thread Samuel Iglesias Gonsálvez
On 23/04/16 00:17, Jason Ekstrand wrote: > On Fri, Apr 22, 2016 at 3:13 PM, Jason Ekstrand > wrote: > >> >> >> On Tue, Apr 12, 2016 at 1:05 AM, Samuel Iglesias Gonsálvez < >> sigles...@igalia.com> wrote: >> >>> From: Iago Toral Quiroga >>> >>> At least i965 hardware does not have native suppor

Re: [Mesa-dev] [PATCH 06/13] nir/lower_double_ops: lower floor()

2016-04-24 Thread Samuel Iglesias Gonsálvez
On 23/04/16 00:13, Jason Ekstrand wrote: > On Tue, Apr 12, 2016 at 1:05 AM, Samuel Iglesias Gonsálvez < > sigles...@igalia.com> wrote: > >> From: Iago Toral Quiroga >> >> At least i965 hardware does not have native support for floor on doubles. >> --- >> src/compiler/nir/nir.h

Re: [Mesa-dev] [PATCH v2] nir/lower_double_ops: lower trunc()

2016-04-24 Thread Iago Toral
On Fri, 2016-04-22 at 15:06 -0700, Jason Ekstrand wrote: > Reviewed-by: Jason Ekstrand > > > Did the v2 fix anything other than newly added tests? No, only the new tests that targeted the cases where the unbiased exponent was between 0 and 52. Iago > --Jason > > > On Thu, Apr 21, 2016 at 10

Re: [Mesa-dev] [PATCH 2/2] glsl: add ability to use essl 3.20

2016-04-24 Thread Dave Airlie
For the two, Reviewed-by: Dave Airlie On 25 April 2016 at 03:35, Ilia Mirkin wrote: > Signed-off-by: Ilia Mirkin > --- > src/compiler/glsl/glsl_parser_extras.cpp | 7 +++ > src/compiler/glsl/glsl_parser_extras.h | 2 ++ > src/mesa/main/extensions_table.h | 1 + > src/mesa/main/m

Re: [Mesa-dev] [PATCH 0/3] Support for Android RGBX/RGBA formats

2016-04-24 Thread Marek Olšák
On Sun, Apr 24, 2016 at 7:06 PM, Emil Velikov wrote: > On 24 April 2016 at 15:41, Chih-Wei Huang wrote: >> 2016-04-24 21:50 GMT+08:00 Emil Velikov : >>> On 24 April 2016 at 14:20, Marek Olšák wrote: On Sun, Apr 24, 2016 at 3:09 PM, Marek Olšák wrote: > On Sun, Apr 24, 2016 at 2:16 PM,

[Mesa-dev] [Bug 95085] Invalid sampling of second texture in fragment shader that have two samplers with different parameters.

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95085 --- Comment #7 from Leonid Maksymchuk --- Thank for your help Ilia, tomorrow I'll make changes to geometry shader and post here the results. -- You are receiving this mail because: You are the QA Contact for the bug.

Re: [Mesa-dev] [PATCH] nouveau: codegen: combineLd/St do not combine indirect loads

2016-04-24 Thread Ilia Mirkin
On Fri, Apr 22, 2016 at 7:06 AM, Hans de Goede wrote: > Hi, > > > On 21-04-16 17:52, Ilia Mirkin wrote: >> >> On Thu, Apr 21, 2016 at 11:40 AM, Hans de Goede >> wrote: >>> >>> Hi, >>> >>> >>> On 21-04-16 17:09, Samuel Pitoiset wrote: On 04/21/2016 04:46 PM, Hans de Goede

Re: [Mesa-dev] [PATCH] i965: Unroll SIMD16 DDY_FINE on Sandybridge.

2016-04-24 Thread Matt Turner
On Tue, Mar 29, 2016 at 5:00 PM, Matt Turner wrote: > On Tue, Mar 29, 2016 at 1:32 AM, Kenneth Graunke > wrote: >> I'm not sure why this is necessary, but it fixes 10 dEQP-GLES3 subtests >> from dEQP-GLES3.functional.shaders.derivate.dfdy.texture.float_nicest.*. > > Okay, so we have to suspect t

[Mesa-dev] [Bug 95110] Some Ogre 2.1 demos doesn't render properly

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95110 --- Comment #1 from MWATTT --- Created attachment 123218 --> https://bugs.freedesktop.org/attachment.cgi?id=123218&action=edit Apitrace of "Sample_Hdr" demo -- You are receiving this mail because: You are the assignee for the bug. You are the

[Mesa-dev] [Bug 95110] Some Ogre 2.1 demos doesn't render properly

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95110 Bug ID: 95110 Summary: Some Ogre 2.1 demos doesn't render properly Product: Mesa Version: 11.2 Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severi

[Mesa-dev] [PATCH 2/2] glsl: add ability to use essl 3.20

2016-04-24 Thread Ilia Mirkin
Signed-off-by: Ilia Mirkin --- src/compiler/glsl/glsl_parser_extras.cpp | 7 +++ src/compiler/glsl/glsl_parser_extras.h | 2 ++ src/mesa/main/extensions_table.h | 1 + src/mesa/main/mtypes.h | 1 + 4 files changed, 11 insertions(+) diff --git a/src/compiler/glsl/g

[Mesa-dev] [PATCH 1/2] main: select ES3.2 version when all extensions are available

2016-04-24 Thread Ilia Mirkin
Signed-off-by: Ilia Mirkin --- src/mesa/main/version.c | 18 +- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/version.c b/src/mesa/main/version.c index b9c1bcb..ffb7787 100644 --- a/src/mesa/main/version.c +++ b/src/mesa/main/version.c @@ -529,8 +529,

Re: [Mesa-dev] [PATCH 0/3] Support for Android RGBX/RGBA formats

2016-04-24 Thread Emil Velikov
On 24 April 2016 at 15:41, Chih-Wei Huang wrote: > 2016-04-24 21:50 GMT+08:00 Emil Velikov : >> On 24 April 2016 at 14:20, Marek Olšák wrote: >>> On Sun, Apr 24, 2016 at 3:09 PM, Marek Olšák wrote: On Sun, Apr 24, 2016 at 2:16 PM, Marek Olšák wrote: > On Fri, Apr 22, 2016 at 12:41 PM,

[Mesa-dev] [Bug 95085] Invalid sampling of second texture in fragment shader that have two samplers with different parameters.

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95085 Ilia Mirkin changed: What|Removed |Added QA Contact|intel-3d-bugs@lists.freedes |mesa-dev@lists.freedesktop.

[Mesa-dev] [PATCH] c11/threads: create mutexattrs only when needed

2016-04-24 Thread Emil Velikov
From: Emil Velikov If the mutexattrs are the default one can just pass NULL to pthread_mutex_init. As the compiler does not know this detail it unnecessarily creates/destroys the attrs. Signed-off-by: Emil Velikov --- While going through GLVND, I've noticed that it (sort of) breaks its assumpti

[Mesa-dev] [Bug 95020] a bug asking for an account

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95020 Jan Ziak <0xe2.0x9a.0...@gmail.com> changed: What|Removed |Added Attachment #123210|0 |1 is obsolet

[Mesa-dev] [Bug 95020] a bug asking for an account

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95020 --- Comment #14 from Jan Ziak <0xe2.0x9a.0...@gmail.com> --- Comment on attachment 123210 --> https://bugs.freedesktop.org/attachment.cgi?id=123210 attachment-24439-0.html >Just a note: I resolved the situation >by Q0.A4 in href="http://githu

Re: [Mesa-dev] [PATCH 0/3] Support for Android RGBX/RGBA formats

2016-04-24 Thread Chih-Wei Huang
2016-04-24 21:50 GMT+08:00 Emil Velikov : > On 24 April 2016 at 14:20, Marek Olšák wrote: >> On Sun, Apr 24, 2016 at 3:09 PM, Marek Olšák wrote: >>> On Sun, Apr 24, 2016 at 2:16 PM, Marek Olšák wrote: On Fri, Apr 22, 2016 at 12:41 PM, Chih-Wei Huang wrote: > 2016-04-21 21:42 GMT+0

[Mesa-dev] [Bug 95020] a bug asking for an account

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95020 --- Comment #13 from Jan Ziak <0xe2.0x9a.0...@gmail.com> --- Just a note: I resolved the situation by Q1.A4 in http://github.com/tul-project/tul/blob/0ebe302b0c0d8f81d50c5303506f95a96b353846/FAQ.md -- You are receiving this mail because: You are

Re: [Mesa-dev] [PATCH 0/3] Support for Android RGBX/RGBA formats

2016-04-24 Thread Emil Velikov
On 24 April 2016 at 14:20, Marek Olšák wrote: > On Sun, Apr 24, 2016 at 3:09 PM, Marek Olšák wrote: >> On Sun, Apr 24, 2016 at 2:16 PM, Marek Olšák wrote: >>> On Fri, Apr 22, 2016 at 12:41 PM, Chih-Wei Huang >>> wrote: 2016-04-21 21:42 GMT+08:00 Emil Velikov : > > On 19 April 2016

Re: [Mesa-dev] [PATCH 0/3] Support for Android RGBX/RGBA formats

2016-04-24 Thread Marek Olšák
On Sun, Apr 24, 2016 at 3:09 PM, Marek Olšák wrote: > On Sun, Apr 24, 2016 at 2:16 PM, Marek Olšák wrote: >> On Fri, Apr 22, 2016 at 12:41 PM, Chih-Wei Huang >> wrote: >>> 2016-04-21 21:42 GMT+08:00 Emil Velikov : On 19 April 2016 at 20:38, Rob Herring wrote: > The RGBX/RGBA pixel

[Mesa-dev] [Bug 95071] [bisected] Wrong colors in KDE/Qt applications

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95071 Marek Olšák changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Mesa-dev] [PATCH 0/3] Support for Android RGBX/RGBA formats

2016-04-24 Thread Marek Olšák
On Sun, Apr 24, 2016 at 2:16 PM, Marek Olšák wrote: > On Fri, Apr 22, 2016 at 12:41 PM, Chih-Wei Huang > wrote: >> 2016-04-21 21:42 GMT+08:00 Emil Velikov : >>> >>> On 19 April 2016 at 20:38, Rob Herring wrote: The RGBX/RGBA pixel formats used in the Android EGL don't get configs creat

[Mesa-dev] [Bug 94168] Incorrect rendering when running Populous 3 on wine using DDraw->WineD3D->OpenGL wrapper [apitrace]

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=94168 Sven Arvidsson changed: What|Removed |Added CC||s...@whiz.se -- You are receiving this

Re: [Mesa-dev] [PATCH 00/25] Vulkan (build et al.) fixes

2016-04-24 Thread Jonathan Gray
On Thu, Apr 21, 2016 at 02:16:00PM +0100, Emil Velikov wrote: > Hi all, > > While tryting to get a tarball and things went a bit strange, thus I've > 'tweaked' the vulkan makefile and simplified things a fair bit. > > The series can be found in branch for-upstream/vulkan-makefile-cleanups > in

Re: [Mesa-dev] [PATCH 0/3] Support for Android RGBX/RGBA formats

2016-04-24 Thread Marek Olšák
On Fri, Apr 22, 2016 at 12:41 PM, Chih-Wei Huang wrote: > 2016-04-21 21:42 GMT+08:00 Emil Velikov : >> >> On 19 April 2016 at 20:38, Rob Herring wrote: >>> The RGBX/RGBA pixel formats used in the Android EGL don't get configs >>> created due to the missing formats in the DRI state tracker. This s

[Mesa-dev] [Bug 95071] [bisected] Wrong colors in KDE/Qt applications

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95071 Marek Olšák changed: What|Removed |Added CC|mar...@gmail.com| -- You are receiving this mail because

Re: [Mesa-dev] [r300g] Visuals not found in (default) depth = 24

2016-04-24 Thread Marek Olšák
On Fri, Apr 22, 2016 at 9:02 AM, Mathieu Malaterre wrote: > Dear all, > > I am trying to resurrect an old effort: > > https://lists.freedesktop.org/archives/mesa-dev/2013-December/050218.html > > After some exchanges with Oded Gabbay and Michel Dänzer, it appears > that I should be able to import

[Mesa-dev] [Bug 95071] [bisected] Wrong colors in KDE/Qt applications

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95071 --- Comment #5 from Kai --- Created attachment 123201 --> https://bugs.freedesktop.org/attachment.cgi?id=123201&action=edit Taskbar with correct colours The attached image shows the taskbar without the patch (again, after a restart of X/SDDM).

[Mesa-dev] [Bug 95071] [bisected] Wrong colors in KDE/Qt applications

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95071 --- Comment #4 from Kai --- Created attachment 123200 --> https://bugs.freedesktop.org/attachment.cgi?id=123200&action=edit More wrong colours in more places (In reply to Marek Olšák from comment #3) > Created attachment 123198 [details] [re

[Mesa-dev] [PATCH] r300g: set endian controls on big endian

2016-04-24 Thread Marek Olšák
From: Marek Olšák --- src/gallium/drivers/r300/r300_reg.h | 20 +++-- src/gallium/drivers/r300/r300_texture.c | 38 ++--- 2 files changed, 43 insertions(+), 15 deletions(-) diff --git a/src/gallium/drivers/r300/r300_reg.h b/src/gallium/drivers/r300/r

Re: [Mesa-dev] [PATCH 3/3] winsys/radeon: remove use_reusable_pool parameter from buffer_create

2016-04-24 Thread Marek Olšák
For the series: Reviewed-by: Marek Olšák Marek On Sat, Apr 23, 2016 at 6:01 AM, Nicolai Hähnle wrote: > From: Nicolai Hähnle > > All callers set this parameter to true. > --- > src/gallium/drivers/r300/r300_query.c | 2 +- > src/gallium/drivers/r300/r300_render.c | 2 +-

Re: [Mesa-dev] [PATCH 0/3] Support for Android RGBX/RGBA formats

2016-04-24 Thread Marek Olšák
On Sat, Apr 23, 2016 at 6:43 PM, Rob Herring wrote: > On Thu, Apr 21, 2016 at 8:42 AM, Emil Velikov > wrote: >> Hi Rob, >> >> On 19 April 2016 at 20:38, Rob Herring wrote: >>> The RGBX/RGBA pixel formats used in the Android EGL don't get configs >>> created due to the missing formats in the DRI

[Mesa-dev] [Bug 95071] [bisected] Wrong colors in KDE/Qt applications

2016-04-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=95071 --- Comment #3 from Marek Olšák --- Created attachment 123198 --> https://bugs.freedesktop.org/attachment.cgi?id=123198&action=edit possible fix Could you please try this patch? -- You are receiving this mail because: You are the assignee

Re: [Mesa-dev] [PATCH] r600g: fix and optimize tgsi_cmp when using ABS and NEG modifier

2016-04-24 Thread Patrick Rudolph
On 2016-04-07 08:10 AM, Dave Airlie wrote: > On 7 April 2016 at 15:43, Ian Romanick wrote: >> On 04/02/2016 02:45 AM, Patrick Rudolph wrote: >>> Are there optimizations done on TGSI ? >>> I can't find any file in src/gallium/auxiliary/tgsi that does so. >> >> What I meant was, at some point the dr