From: Kenneth Graunke Date: Thu, 4 Jul 2013 17:30:47 +0000 (-0700) Subject: i965: Store brw_context as the DRI driver private, not intel_context. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e0858763bcdb96b49dce7aca0d6b593d41621178;p=mesa.git i965: Store brw_context as the DRI driver private, not intel_context. Right now, they're interchangeable. In the future, intel_context will either go away or change purpose. Signed-off-by: Kenneth Graunke Acked-by: Chris Forbes Acked-by: Paul Berry Acked-by: Anuj Phogat --- diff --git a/src/mesa/drivers/dri/i965/intel_context.c b/src/mesa/drivers/dri/i965/intel_context.c index 9ba6d6ca80e..b89961aff5a 100644 --- a/src/mesa/drivers/dri/i965/intel_context.c +++ b/src/mesa/drivers/dri/i965/intel_context.c @@ -472,7 +472,7 @@ intelInitContext(struct brw_context *brw, return false; } - driContextPriv->driverPrivate = intel; + driContextPriv->driverPrivate = brw; brw->driContext = driContextPriv; intel->driFd = sPriv->fd;