From: Michel Dänzer Date: Fri, 25 Apr 2008 09:34:20 +0000 (+0100) Subject: gallium: Tell the driver the texture is updated when we finish rendering to it. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d7b523b46b833fd08c70850d7a6cc7b6fd714a8e;p=mesa.git gallium: Tell the driver the texture is updated when we finish rendering to it. --- diff --git a/src/mesa/state_tracker/st_cb_fbo.c b/src/mesa/state_tracker/st_cb_fbo.c index b73867bb729..69dde56e557 100644 --- a/src/mesa/state_tracker/st_cb_fbo.c +++ b/src/mesa/state_tracker/st_cb_fbo.c @@ -400,6 +400,10 @@ st_finish_render_texture(GLcontext *ctx, ctx->st->pipe->flush(ctx->st->pipe, PIPE_FLUSH_RENDER_CACHE, NULL); + ctx->st->pipe->texture_update(ctx->st->pipe, + st_get_texobj_texture(att->Texture), + att->CubeMapFace, 1 << att->TextureLevel); + /* printf("FINISH RENDER TO TEXTURE surf=%p\n", strb->surface); */