aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/vl/vl_zscan.c
diff options
context:
space:
mode:
authorJan Vesely <[email protected]>2016-06-09 23:01:46 -0400
committerEmil Velikov <[email protected]>2016-06-13 15:31:29 +0100
commit1fb4179f927442354f93dfc8494f0236e50af838 (patch)
tree9c021e857a74e60271c0b29222c46f5efe7c20a7 /src/gallium/auxiliary/vl/vl_zscan.c
parent112e988329b6af817b4892b530f703e7997b1d7d (diff)
vl: Fix trivial sign compare warnings
v2: add whitepace fixes Signed-off-by: Jan Vesely <[email protected]> Acked-by: Jose Fonseca <[email protected]> [Emil Velikov: squash a few more whitespace issues] Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_zscan.c')
-rw-r--r--src/gallium/auxiliary/vl/vl_zscan.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/vl/vl_zscan.c b/src/gallium/auxiliary/vl/vl_zscan.c
index 5ff442087d4..ef05af463f3 100644
--- a/src/gallium/auxiliary/vl/vl_zscan.c
+++ b/src/gallium/auxiliary/vl/vl_zscan.c
@@ -99,15 +99,12 @@ static void *
create_vert_shader(struct vl_zscan *zscan)
{
struct ureg_program *shader;
-
struct ureg_src scale;
struct ureg_src vrect, vpos, block_num;
-
struct ureg_dst tmp;
struct ureg_dst o_vpos;
struct ureg_dst *o_vtex;
-
- signed i;
+ unsigned i;
shader = ureg_create(PIPE_SHADER_VERTEX);
if (!shader)