From a9bb067e27cd1d249cede580c50e7e2fc1eef372 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 19 Jan 2018 15:57:50 +0000 Subject: [PATCH] i965: make brw_context::num_samples unsigned int It is never a negative number. Variable is compared against unsigned values and passed into functions that expect unsigned int. Signed-off-by: Emil Velikov Reviewed-by: Jason Ekstrand --- src/mesa/drivers/dri/i965/brw_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index d00fe351087..4b78508ccb3 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -980,7 +980,7 @@ struct brw_context * Number of samples in ctx->DrawBuffer, updated by BRW_NEW_NUM_SAMPLES so * that we don't have to reemit that state every time we change FBOs. */ - int num_samples; + unsigned int num_samples; /* BRW_NEW_URB_ALLOCATIONS: */ -- 2.30.2