]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
gl_textures: use correct type in gltexture_t
authoruis <uis9936@gmail.com>
Fri, 16 Aug 2024 20:08:44 +0000 (23:08 +0300)
committeruis <uis9936@gmail.com>
Sat, 24 Aug 2024 17:55:59 +0000 (20:55 +0300)
gl_textures.c

index 049240b63bccb4d80c842c4c3f577c7345d19620..3ec1ae59a28286e5b0ff93c302ae52dd2385a385 100644 (file)
@@ -216,7 +216,7 @@ typedef struct gltexture_s
        // pointer to one of the textype_ structs
        textypeinfo_t *textype;
        // one of the GLTEXTURETYPE_ values
-       int texturetype;
+       gltexturetype_t texturetype;
        // palette if the texture is TEXTYPE_PALETTE
        const unsigned int *palette;
        // actual stored texture size after gl_picmip and gl_max_size are applied
@@ -1123,7 +1123,7 @@ static void R_UploadFullTexture(gltexture_t *glt, const unsigned char *data)
        }
 }
 
-static rtexture_t *R_SetupTexture(rtexturepool_t *rtexturepool, const char *identifier, int width, int height, int depth, int sides, int flags, int miplevel, textype_t textype, int texturetype, const unsigned char *data, const unsigned int *palette)
+static rtexture_t *R_SetupTexture(rtexturepool_t *rtexturepool, const char *identifier, int width, int height, int depth, int sides, int flags, int miplevel, textype_t textype, gltexturetype_t texturetype, const unsigned char *data, const unsigned int *palette)
 {
        int i, size;
        gltexture_t *glt;