From: Brian Paul Date: Fri, 15 Oct 2010 23:18:39 +0000 (-0600) Subject: st/mesa: use GLuint to avoid problem w/ uint not defined on mingw32 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fa5309f0b09f7216ddf7f00cc4f318fa9db9128d;p=mesa.git st/mesa: use GLuint to avoid problem w/ uint not defined on mingw32 --- diff --git a/src/mesa/state_tracker/st_atom.h b/src/mesa/state_tracker/st_atom.h index c7a04951bff..6a5ea365ebc 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