mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
mesa: s/GLint/GLuint/ to fix MSVC warnings in mipmap.c
This commit is contained in:
parent
738337356b
commit
528e5b9476
1 changed files with 2 additions and 2 deletions
|
|
@ -1885,7 +1885,7 @@ generate_mipmap_uncompressed(struct gl_context *ctx, GLenum target,
|
|||
const struct gl_texture_image *srcImage,
|
||||
GLuint maxLevel)
|
||||
{
|
||||
GLint level;
|
||||
GLuint level;
|
||||
GLenum datatype;
|
||||
GLuint comps;
|
||||
|
||||
|
|
@ -2017,7 +2017,7 @@ generate_mipmap_compressed(struct gl_context *ctx, GLenum target,
|
|||
struct gl_texture_image *srcImage,
|
||||
GLuint maxLevel)
|
||||
{
|
||||
GLint level;
|
||||
GLuint level;
|
||||
gl_format temp_format;
|
||||
GLint components;
|
||||
GLuint temp_src_stride; /* in bytes */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue