Re: [Mesa-dev] [PATCH 13/78] i965/nir/vec4: Implement conditional statements (nir_cf_node_if)

2015-07-05 Thread Iago Toral
On Sun, 2015-07-05 at 19:14 -0700, Jason Ekstrand wrote: On Fri, Jul 3, 2015 at 12:32 AM, Iago Toral ito...@igalia.com wrote: On Thu, 2015-07-02 at 10:11 -0700, Jason Ekstrand wrote: On Wed, Jul 1, 2015 at 11:44 PM, Iago Toral ito...@igalia.com wrote: On Tue, 2015-06-30 at 09:30 -0700,

Re: [Mesa-dev] [PATCH 13/78] i965/nir/vec4: Implement conditional statements (nir_cf_node_if)

2015-07-05 Thread Jason Ekstrand
On Fri, Jul 3, 2015 at 12:32 AM, Iago Toral ito...@igalia.com wrote: On Thu, 2015-07-02 at 10:11 -0700, Jason Ekstrand wrote: On Wed, Jul 1, 2015 at 11:44 PM, Iago Toral ito...@igalia.com wrote: On Tue, 2015-06-30 at 09:30 -0700, Jason Ekstrand wrote: On Fri, Jun 26, 2015 at 1:06 AM, Eduardo

Re: [Mesa-dev] [PATCH 13/78] i965/nir/vec4: Implement conditional statements (nir_cf_node_if)

2015-07-03 Thread Iago Toral
On Thu, 2015-07-02 at 10:11 -0700, Jason Ekstrand wrote: On Wed, Jul 1, 2015 at 11:44 PM, Iago Toral ito...@igalia.com wrote: On Tue, 2015-06-30 at 09:30 -0700, Jason Ekstrand wrote: On Fri, Jun 26, 2015 at 1:06 AM, Eduardo Lima Mitev el...@igalia.com wrote: From: Iago Toral Quiroga

Re: [Mesa-dev] [PATCH 13/78] i965/nir/vec4: Implement conditional statements (nir_cf_node_if)

2015-07-02 Thread Iago Toral
On Tue, 2015-06-30 at 09:30 -0700, Jason Ekstrand wrote: On Fri, Jun 26, 2015 at 1:06 AM, Eduardo Lima Mitev el...@igalia.com wrote: From: Iago Toral Quiroga ito...@igalia.com The same we do in the FS NIR backend, only that here we need to consider the number of components in the

Re: [Mesa-dev] [PATCH 13/78] i965/nir/vec4: Implement conditional statements (nir_cf_node_if)

2015-07-02 Thread Jason Ekstrand
On Wed, Jul 1, 2015 at 11:44 PM, Iago Toral ito...@igalia.com wrote: On Tue, 2015-06-30 at 09:30 -0700, Jason Ekstrand wrote: On Fri, Jun 26, 2015 at 1:06 AM, Eduardo Lima Mitev el...@igalia.com wrote: From: Iago Toral Quiroga ito...@igalia.com The same we do in the FS NIR backend, only

Re: [Mesa-dev] [PATCH 13/78] i965/nir/vec4: Implement conditional statements (nir_cf_node_if)

2015-06-30 Thread Jason Ekstrand
On Fri, Jun 26, 2015 at 1:06 AM, Eduardo Lima Mitev el...@igalia.com wrote: From: Iago Toral Quiroga ito...@igalia.com The same we do in the FS NIR backend, only that here we need to consider the number of components in the condition and adjust the swizzle accordingly. Bugzilla:

[Mesa-dev] [PATCH 13/78] i965/nir/vec4: Implement conditional statements (nir_cf_node_if)

2015-06-26 Thread Eduardo Lima Mitev
From: Iago Toral Quiroga ito...@igalia.com The same we do in the FS NIR backend, only that here we need to consider the number of components in the condition and adjust the swizzle accordingly. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89580 ---