From: Ilia Mirkin Date: Wed, 4 Sep 2013 06:06:05 +0000 (-0400) Subject: nv30: fix inconsistent setting of push->user_priv X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=85f7df81a91b1825bf25adf3d4febcbb5e0a0d7e;p=mesa.git nv30: fix inconsistent setting of push->user_priv It's set to &nv30->bufctx everywhere else. Signed-off-by: Ilia Mirkin Cc: "9.2" --- diff --git a/src/gallium/drivers/nv30/nv30_context.c b/src/gallium/drivers/nv30/nv30_context.c index e872c027ae3..acef493afad 100644 --- a/src/gallium/drivers/nv30/nv30_context.c +++ b/src/gallium/drivers/nv30/nv30_context.c @@ -208,7 +208,7 @@ nv30_context_create(struct pipe_screen *pscreen, void *priv) /*XXX: *cough* per-context pushbufs */ push = screen->base.pushbuf; nv30->base.pushbuf = push; - nv30->base.pushbuf->user_priv = push->user_priv; /* hack at validate time */ + nv30->base.pushbuf->user_priv = &nv30->bufctx; /* hack at validate time */ nv30->base.pushbuf->rsvd_kick = 16; /* hack in screen before first space */ nv30->base.pushbuf->kick_notify = nv30_context_kick_notify;