diff options
author | Brian Paul <[email protected]> | 2013-12-13 12:51:10 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-12-13 12:51:10 -0700 |
commit | e735dfd35b036b3427ba6c73f482f75062a3d75f (patch) | |
tree | d1800845d6f4bb8f5d234ae0062bc3454a5e7378 /src/mesa/main/textureview.c | |
parent | 375f660e27d418a09cda75cf49ace2eb0211e64f (diff) |
mesa: s/uint/GLuint/ to fix MSVC error
Diffstat (limited to 'src/mesa/main/textureview.c')
-rw-r--r-- | src/mesa/main/textureview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/textureview.c b/src/mesa/main/textureview.c index 5c08b1abfb4..ab1bcfe6b01 100644 --- a/src/mesa/main/textureview.c +++ b/src/mesa/main/textureview.c @@ -169,7 +169,7 @@ static const struct internal_format_class_info s3tc_compatible_internal_formats[ static GLenum lookup_view_class(struct gl_context *ctx, GLenum internalformat) { - uint i; + GLuint i; for (i = 0; i < ARRAY_SIZE(compatible_internal_formats); i++) { if (compatible_internal_formats[i].internal_format == internalformat) |