st/mesa: make rtt_level, face, slice unsigned to silence MSVC warnings

This commit is contained in:
Brian Paul 2013-06-26 09:33:40 -06:00
parent 2285645aa2
commit 202299d16e

View file

@ -59,7 +59,7 @@ struct st_renderbuffer
void *data;
struct st_texture_object *rtt; /**< GL render to texture's texture */
int rtt_level, rtt_face, rtt_slice;
unsigned rtt_level, rtt_face, rtt_slice;
};