st/mesa: make rtt_level, face, slice unsigned to silence MSVC warnings 66/7166/1
authorBrian Paul <brianp@vmware.com>
Wed, 26 Jun 2013 15:33:40 +0000 (09:33 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 26 Jun 2013 16:42:59 +0000 (10:42 -0600)
src/mesa/state_tracker/st_cb_fbo.h

index 461dbe9..f335c37 100644 (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;
 };