i965: Change the type of max_{vs, hs, ...}_threads variables to unsigned

Fixes following compiler warning:
brw_cs.cpp:386:27: warning: comparison between signed and unsigned
integer expressions [-Wsign-compare]

Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Anuj Phogat 2015-07-29 09:57:26 -07:00
parent 2484263fe9
commit 92994742d0
2 changed files with 7 additions and 7 deletions

View file

@ -1241,12 +1241,12 @@ struct brw_context
* Platform specific constants containing the maximum number of threads
* for each pipeline stage.
*/
int max_vs_threads;
int max_hs_threads;
int max_ds_threads;
int max_gs_threads;
int max_wm_threads;
int max_cs_threads;
unsigned max_vs_threads;
unsigned max_hs_threads;
unsigned max_ds_threads;
unsigned max_gs_threads;
unsigned max_wm_threads;
unsigned max_cs_threads;
/* BRW_NEW_URB_ALLOCATIONS:
*/

View file

@ -82,7 +82,7 @@ brw_cs_emit(struct brw_context *brw,
prog_data->local_size[0] = cp->LocalSize[0];
prog_data->local_size[1] = cp->LocalSize[1];
prog_data->local_size[2] = cp->LocalSize[2];
int local_workgroup_size =
unsigned local_workgroup_size =
cp->LocalSize[0] * cp->LocalSize[1] * cp->LocalSize[2];
cfg_t *cfg = NULL;