rbug: silence some MSVC signed/unsigned warnings

This commit is contained in:
Brian Paul
2013-03-20 10:54:24 -06:00
parent bfc8b8fac5
commit f7b07fd25c
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ rbug_draw_block_locked(struct rbug_context *rb_pipe, int flag)
rb_pipe->draw_blocked |= flag;
} else if ((rb_pipe->draw_rule.blocker & flag) &&
(rb_pipe->draw_blocker & RBUG_BLOCK_RULE)) {
int k;
unsigned k;
boolean block = FALSE;
unsigned sh;

View File

@@ -321,7 +321,7 @@ rbug_context_info(struct rbug_rbug *tr_rbug, struct rbug_header *header, uint32_
struct rbug_context *rb_context = NULL;
rbug_texture_t cbufs[PIPE_MAX_COLOR_BUFS];
rbug_texture_t texs[PIPE_MAX_SAMPLERS];
int i;
unsigned i;
pipe_mutex_lock(rb_screen->list_mutex);
rb_context = rbug_get_context_locked(rb_screen, info->context);