Re: [Mesa-dev] [PATCH 4/4] i965: Fix barrier count shift in scalar TCS backend.

2016-08-17 Thread Alejandro Piñeiro
Reviewed-by: Alejandro Piñeiro On 17/08/16 16:15, Kenneth Graunke wrote: > The "Barrier Count" field goes in 14:9 of m0.2. The vec4 backend > correctly shifts by 9, but the scalar backend only shifted by 8. > > It's not like this changed - I think I just made a typo when writing > the original

[Mesa-dev] [PATCH 4/4] i965: Fix barrier count shift in scalar TCS backend.

2016-08-17 Thread Kenneth Graunke
The "Barrier Count" field goes in 14:9 of m0.2. The vec4 backend correctly shifts by 9, but the scalar backend only shifted by 8. It's not like this changed - I think I just made a typo when writing the original scalar TCS backend code. Cc: mesa-sta...@lists.freedesktop.org Signed-off-by: Kennet