OSDN Git Service

st/mesa: use GLuint to avoid problem w/ uint not defined on mingw32
authorBrian Paul <brianp@vmware.com>
Fri, 15 Oct 2010 23:18:39 +0000 (17:18 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 15 Oct 2010 23:18:39 +0000 (17:18 -0600)
src/mesa/state_tracker/st_atom.h

index c7a0495..6a5ea36 100644 (file)
@@ -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