From 24d25b55bf511493e70600cc7c49c0a0e6fc7a32 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 23 Nov 2011 15:03:47 -0700 Subject: [PATCH] softpipe: s/int/unsigned/ to be consistent in alpha test code --- src/gallium/drivers/softpipe/sp_quad_depth_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2