Re: [Mesa-dev] [PATCH 1/2] gallium: Add dimension parameter to launch_grid

2014-08-05 Thread Jan Vesely
On Tue, 2014-08-05 at 13:45 +0300, Francisco Jerez wrote: > Jan Vesely writes: > > > This is needed for OpenCL > > > > CC: Francisco Jerez > > CC: Tom Stellard > > > > Signed-off-by: Jan Vesely > > --- > > > > I tried to find another way how to get the information, but in the end > > there is

Re: [Mesa-dev] [PATCH 1/2] gallium: Add dimension parameter to launch_grid

2014-08-05 Thread Francisco Jerez
Jan Vesely writes: > This is needed for OpenCL > > CC: Francisco Jerez > CC: Tom Stellard > > Signed-off-by: Jan Vesely > --- > > I tried to find another way how to get the information, but in the end > there is no way to distinguish between <1,1,1> dim 1, and <1,1,1> dim 2 (or > 3). > So pas

[Mesa-dev] [PATCH 1/2] gallium: Add dimension parameter to launch_grid

2014-07-30 Thread Jan Vesely
This is needed for OpenCL CC: Francisco Jerez CC: Tom Stellard Signed-off-by: Jan Vesely --- I tried to find another way how to get the information, but in the end there is no way to distinguish between <1,1,1> dim 1, and <1,1,1> dim 2 (or 3). So passing the work_dim information is required.