Re: [Mesa-dev] [PATCH 5/9] i965: Replace open-coded gen6 queryobj offsets with simple helpers

2017-06-15 Thread Chris Wilson
Quoting Kenneth Graunke (2017-06-14 23:10:38) > On Friday, June 9, 2017 6:01:36 AM PDT Chris Wilson wrote: > > diff --git a/src/mesa/drivers/dri/i965/hsw_queryobj.c > > b/src/mesa/drivers/dri/i965/hsw_queryobj.c > > index b81ab3b6f8..cb1a2df52d 100644 > > ---

Re: [Mesa-dev] [PATCH 5/9] i965: Replace open-coded gen6 queryobj offsets with simple helpers

2017-06-14 Thread Ian Romanick
On 06/09/2017 06:01 AM, Chris Wilson wrote: > Lots of places open-coded the assumed layout of the predicate/results > within the query object, replace those with simple helpers. > > Signed-off-by: Chris Wilson > Cc: Kenneth Graunke > Cc: Matt

Re: [Mesa-dev] [PATCH 5/9] i965: Replace open-coded gen6 queryobj offsets with simple helpers

2017-06-14 Thread Kenneth Graunke
On Friday, June 9, 2017 6:01:36 AM PDT Chris Wilson wrote: > Lots of places open-coded the assumed layout of the predicate/results > within the query object, replace those with simple helpers. > > Signed-off-by: Chris Wilson > Cc: Kenneth Graunke

[Mesa-dev] [PATCH 5/9] i965: Replace open-coded gen6 queryobj offsets with simple helpers

2017-06-09 Thread Chris Wilson
Lots of places open-coded the assumed layout of the predicate/results within the query object, replace those with simple helpers. Signed-off-by: Chris Wilson Cc: Kenneth Graunke Cc: Matt Turner ---