Module: Mesa Branch: master Commit: 867109f311a9f23a69465e5c65e02fe5a36a1507 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=867109f311a9f23a69465e5c65e02fe5a36a1507
Author: Brian Paul <[email protected]> Date: Wed Apr 21 09:58:15 2010 -0600 st/glx: variable 'i' is an enum Now we can get see 'i' as an enum name instead of a plain integer in gdb. --- src/gallium/state_trackers/glx/xlib/xm_st.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/state_trackers/glx/xlib/xm_st.c b/src/gallium/state_trackers/glx/xlib/xm_st.c index 27b6da9..294b593 100644 --- a/src/gallium/state_trackers/glx/xlib/xm_st.c +++ b/src/gallium/state_trackers/glx/xlib/xm_st.c @@ -132,7 +132,7 @@ xmesa_st_framebuffer_validate_textures(struct st_framebuffer_iface *stfbi, { struct xmesa_st_framebuffer *xstfb = xmesa_st_framebuffer(stfbi); struct pipe_resource templ; - unsigned i; + enum st_attachment_type i; /* remove outdated textures */ if (xstfb->texture_width != width || xstfb->texture_height != height) { _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
