diff options
author | Brian Paul <[email protected]> | 2010-10-15 17:18:39 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-10-15 17:18:39 -0600 |
commit | fa5309f0b09f7216ddf7f00cc4f318fa9db9128d (patch) | |
tree | 3f39e11271c3385ff6eb91280c5e6bef4cce2a62 /src/mesa/state_tracker/st_atom.h | |
parent | cba65f7e0e0269bbb30efd886dd7868f5e3ccc38 (diff) |
st/mesa: use GLuint to avoid problem w/ uint not defined on mingw32
Diffstat (limited to 'src/mesa/state_tracker/st_atom.h')
-rw-r--r-- | 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 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 |