Mesa (master): st/mesa: use GLuint to avoid problem w/ uint not defined on mingw32

Brian Paul brianp at kemper.freedesktop.org
Fri Oct 15 23:18:46 UTC 2010


Module: Mesa
Branch: master
Commit: fa5309f0b09f7216ddf7f00cc4f318fa9db9128d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fa5309f0b09f7216ddf7f00cc4f318fa9db9128d

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Oct 15 17:18:39 2010 -0600

st/mesa: use GLuint to avoid problem w/ uint not defined on mingw32

---

 src/mesa/state_tracker/st_atom.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/state_tracker/st_atom.h b/src/mesa/state_tracker/st_atom.h
index c7a0495..6a5ea36 100644
--- a/src/mesa/state_tracker/st_atom.h
+++ b/src/mesa/state_tracker/st_atom.h
@@ -67,6 +67,6 @@ extern const struct st_tracked_state st_update_vs_constants;
 extern const struct st_tracked_state st_update_pixel_transfer;
 
 
-uint st_compare_func_to_pipe(GLenum func);
+GLuint st_compare_func_to_pipe(GLenum func);
 
 #endif




More information about the mesa-commit mailing list