From: Brian Paul Date: Wed, 23 Nov 2011 22:03:47 +0000 (-0700) Subject: softpipe: s/int/unsigned/ to be consistent in alpha test code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=24d25b55bf511493e70600cc7c49c0a0e6fc7a32;p=mesa.git softpipe: s/int/unsigned/ to be consistent in alpha test code --- diff --git a/src/gallium/drivers/softpipe/sp_quad_depth_test.c b/src/gallium/drivers/softpipe/sp_quad_depth_test.c index fb163b20c71..4cf378e68e4 100644 --- a/src/gallium/drivers/softpipe/sp_quad_depth_test.c +++ b/src/gallium/drivers/softpipe/sp_quad_depth_test.c @@ -629,7 +629,7 @@ depth_stencil_test_quad(struct quad_stage *qs, #define ALPHATEST( FUNC, COMP ) \ - static int \ + static unsigned \ alpha_test_quads_##FUNC( struct quad_stage *qs, \ struct quad_header *quads[], \ unsigned nr ) \ @@ -668,7 +668,7 @@ ALPHATEST( GEQUAL, >= ) /* XXX: Incorporate into shader using KILP. */ -static int +static unsigned alpha_test_quads(struct quad_stage *qs, struct quad_header *quads[], unsigned nr)