summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-06-26 09:33:40 -0600
committerBrian Paul <[email protected]>2013-06-26 10:42:59 -0600
commit202299d16e64eea0552c6c9a96139823a8244e4d (patch)
treea0f5db046a1927252232a890b66a5c375e24a5d9 /src
parent2285645aa26662bb0aa68c8b15e04a406f3c77f6 (diff)
st/mesa: make rtt_level, face, slice unsigned to silence MSVC warnings
Diffstat (limited to 'src')
-rw-r--r--src/mesa/state_tracker/st_cb_fbo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_fbo.h b/src/mesa/state_tracker/st_cb_fbo.h
index 461dbe98597..f335c371b0b 100644
--- a/src/mesa/state_tracker/st_cb_fbo.h
+++ b/src/mesa/state_tracker/st_cb_fbo.h
@@ -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;
};