Re: [Mesa-dev] [PATCH] i965/fs: Restore compute shader support in brw_nir_lower_inputs

2015-10-14 Thread Kenneth Graunke
On Tuesday, October 13, 2015 09:02:48 PM Jordan Justen wrote: > On 2015-10-13 20:04:36, Kenneth Graunke wrote: > > On Tuesday, October 13, 2015 01:44:55 PM Jordan Justen wrote: > > > The commit shown below caused compute shaders to hit the unreachable > > > in the default of the switch block. Resto

Re: [Mesa-dev] [PATCH] i965/fs: Restore compute shader support in brw_nir_lower_inputs

2015-10-13 Thread Jordan Justen
On 2015-10-13 20:04:36, Kenneth Graunke wrote: > On Tuesday, October 13, 2015 01:44:55 PM Jordan Justen wrote: > > The commit shown below caused compute shaders to hit the unreachable > > in the default of the switch block. Restore compute shaders to use the > > fragment shader path. > > > > Also,

Re: [Mesa-dev] [PATCH] i965/fs: Restore compute shader support in brw_nir_lower_inputs

2015-10-13 Thread Kenneth Graunke
On Tuesday, October 13, 2015 01:44:55 PM Jordan Justen wrote: > The commit shown below caused compute shaders to hit the unreachable > in the default of the switch block. Restore compute shaders to use the > fragment shader path. > > Also, simplify the fragment/compute path to only support scalar

[Mesa-dev] [PATCH] i965/fs: Restore compute shader support in brw_nir_lower_inputs

2015-10-13 Thread Jordan Justen
The commit shown below caused compute shaders to hit the unreachable in the default of the switch block. Restore compute shaders to use the fragment shader path. Also, simplify the fragment/compute path to only support scalar mode. commit 2953c3d76178d7589947e6ea1dbd902b7b02b3d4 Author: Kenneth G