From 4aea4d6d64de81b2c00784aa69ca900fdbec3690 Mon Sep 17 00:00:00 2001 From: Topi Pohjolainen Date: Fri, 21 Jul 2017 11:49:08 +0300 Subject: [PATCH] main/teximage: Even on failure use valid format for init() Otherwise init_teximage_fields_ms() (called by _mesa_init_teximage_fields()) will always assert as it can't find valid base format. Reviewed-by: Jason Ekstrand Signed-off-by: Topi Pohjolainen --- src/mesa/main/teximage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 5e13025ed1b..2132aaee76b 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -5772,7 +5772,7 @@ texture_image_multisample(struct gl_context *ctx, GLuint dims, * like, but being tidy is good. */ _mesa_init_teximage_fields(ctx, texImage, - 0, 0, 0, 0, GL_NONE, MESA_FORMAT_NONE); + 0, 0, 0, 0, internalformat, texFormat); } } -- 2.30.2