summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga/svga_tgsi_insn.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-10-16 17:54:37 -0600
committerBrian Paul <brianp@vmware.com>2012-10-16 17:55:39 -0600
commit25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8 (patch)
tree64142c005443111ccf8da4d4bde7e90687abecce /src/gallium/drivers/svga/svga_tgsi_insn.c
parent4d0458dc6ea4b0c6b6bb67b68fcb9e77f2ccf8c2 (diff)
downloadexternal_mesa3d-25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8.zip
external_mesa3d-25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8.tar.gz
external_mesa3d-25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8.tar.bz2
svga: silence some MSVC signed/unsigned comparison warnings
Diffstat (limited to 'src/gallium/drivers/svga/svga_tgsi_insn.c')
-rw-r--r--src/gallium/drivers/svga/svga_tgsi_insn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi_insn.c b/src/gallium/drivers/svga/svga_tgsi_insn.c
index 4770816..2288a53 100644
--- a/src/gallium/drivers/svga/svga_tgsi_insn.c
+++ b/src/gallium/drivers/svga/svga_tgsi_insn.c
@@ -3098,7 +3098,7 @@ static boolean emit_inverted_texcoords( struct svga_shader_emitter *emit )
static INLINE boolean
needs_to_create_zero( struct svga_shader_emitter *emit )
{
- int i;
+ unsigned i;
if (emit->unit == PIPE_SHADER_FRAGMENT) {
if (emit->key.fkey.light_twoside)