From: Benjamin Franzke Date: Wed, 2 Nov 2011 14:56:23 +0000 (+0100) Subject: st/dri/sw: Fix incorrect cast X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=31156c07b0292e477fa0d1f11fe7a318b6eda254;p=mesa.git st/dri/sw: Fix incorrect cast Missed one casting error due to rebase for commit 98aa2a8f725e44aec8bd998fe436a134e94f13bb. --- 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;