From 31156c07b0292e477fa0d1f11fe7a318b6eda254 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 2 Nov 2011 15:56:23 +0100 Subject: [PATCH] st/dri/sw: Fix incorrect cast Missed one casting error due to rebase for commit 98aa2a8f725e44aec8bd998fe436a134e94f13bb. --- src/gallium/state_trackers/dri/sw/drisw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/state_trackers/dri/sw/drisw.c b/src/gallium/state_trackers/dri/sw/drisw.c index f336fe075f8..f32a268e46f 100644 --- a/src/gallium/state_trackers/dri/sw/drisw.c +++ b/src/gallium/state_trackers/dri/sw/drisw.c @@ -234,7 +234,7 @@ drisw_update_tex_buffer(struct dri_drawable *drawable, struct dri_context *ctx, struct pipe_resource *res) { - struct pipe_context *pipe = ((struct st_context *) ctx)->st->pipe; + struct pipe_context *pipe = ((struct st_context *) ctx->st)->pipe; __DRIdrawable *dPriv = drawable->dPriv; __DRIscreen *sPriv = dPriv->driScreenPriv; int x, y, w, h; -- 2.11.0