Re: [Mesa-dev] [PATCH 02/10] i965/fs: Add a width field to fs_inst

2014-09-04 Thread Jason Ekstrand
On Sep 4, 2014 10:45 PM, "Matt Turner" wrote: > > On Thu, Sep 4, 2014 at 10:19 PM, Jason Ekstrand wrote: > > This will, eventually, allow us to manage execution widths of instructions > > in a much more natural way from the fs_visitor level. > > > > Signed-off-by: Jason Ekstrand > > Adding a wid

Re: [Mesa-dev] [PATCH 02/10] i965/fs: Add a width field to fs_inst

2014-09-04 Thread Matt Turner
On Thu, Sep 4, 2014 at 10:19 PM, Jason Ekstrand wrote: > This will, eventually, allow us to manage execution widths of instructions > in a much more natural way from the fs_visitor level. > > Signed-off-by: Jason Ekstrand Adding a width field to fs_inst might be fine, but I don't think I like ad

[Mesa-dev] [PATCH 02/10] i965/fs: Add a width field to fs_inst

2014-09-04 Thread Jason Ekstrand
This will, eventually, allow us to manage execution widths of instructions in a much more natural way from the fs_visitor level. Signed-off-by: Jason Ekstrand --- src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp | 10 +-- src/mesa/drivers/dri/i965/brw_blorp_blit_eu.h | 32 +- src/me