From 6fd4a61ad6f19bcc8d693df6f84142ef7379509b Mon Sep 17 00:00:00 2001 From: "Park, Jeongmin" Date: Tue, 3 Feb 2015 11:52:03 +0900 Subject: [PATCH] st/osmesa: Fix osbuffer->textures indexing Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=88930 Cc: 10.4 Reviewed-by: Brian Paul --- src/gallium/state_trackers/osmesa/osmesa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/state_trackers/osmesa/osmesa.c b/src/gallium/state_trackers/osmesa/osmesa.c index 6b27c8af12c..4e2b2e045d6 100644 --- a/src/gallium/state_trackers/osmesa/osmesa.c +++ b/src/gallium/state_trackers/osmesa/osmesa.c @@ -431,7 +431,7 @@ osmesa_st_framebuffer_validate(struct st_context_iface *stctx, templat.format = format; templat.bind = bind; - out[i] = osbuffer->textures[i] = + out[i] = osbuffer->textures[statts[i]] = screen->resource_create(screen, &templat); } -- 2.30.2