From: Brian Paul Date: Wed, 17 Oct 2012 00:32:57 +0000 (-0600) Subject: tgsi: silence MSVC signed/unsigned comparison warnings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=198d1bdb5f446ee055d5591a61c0174f87171820;p=mesa.git tgsi: silence MSVC signed/unsigned comparison warnings Reviewed-by: Jose Fonseca --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index c202033921f..3e6f76a4d6b 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c @@ -406,7 +406,7 @@ iter_property( struct tgsi_iterate_context *iter, struct tgsi_full_property *prop ) { - int i; + unsigned i; struct dump_ctx *ctx = (struct dump_ctx *)iter; TXT( "PROPERTY " ); diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index 68bb598cf3c..0b58f097ecf 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -1057,7 +1057,7 @@ fetch_src_file_channel(const struct tgsi_exec_machine *mach, const uint *buf = (const uint *)mach->Consts[constbuf]; const int pos = index->i[i] * 4 + swizzle; /* const buffer bounds check */ - if (pos < 0 || pos >= mach->ConstsSize[constbuf]) { + if (pos < 0 || pos >= (int) mach->ConstsSize[constbuf]) { if (0) { /* Debug: print warning */ static int count = 0;