From: Eric Anholt Date: Fri, 25 Apr 2014 18:47:13 +0000 (-0700) Subject: i965: Drop pointless cast of texObj to intelObj. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=522fb01275f7f05992c0949848031fc349c43724;p=mesa.git i965: Drop pointless cast of texObj to intelObj. Reviewed-by: Kenneth Graunke Reviewed-by: Kristian Høgsberg Reviewed-by: Chad Versace --- diff --git a/src/mesa/drivers/dri/i965/intel_tex_image.c b/src/mesa/drivers/dri/i965/intel_tex_image.c index ee02e689782..c225e4e028b 100644 --- a/src/mesa/drivers/dri/i965/intel_tex_image.c +++ b/src/mesa/drivers/dri/i965/intel_tex_image.c @@ -273,7 +273,6 @@ intelSetTexBuffer2(__DRIcontext *pDRICtx, GLint target, struct gl_framebuffer *fb = dPriv->driverPrivate; struct brw_context *brw = pDRICtx->driverPrivate; struct gl_context *ctx = &brw->ctx; - struct intel_texture_object *intelObj; struct intel_renderbuffer *rb; struct gl_texture_object *texObj; struct gl_texture_image *texImage; @@ -281,9 +280,8 @@ intelSetTexBuffer2(__DRIcontext *pDRICtx, GLint target, mesa_format texFormat = MESA_FORMAT_NONE; texObj = _mesa_get_current_tex_object(ctx, target); - intelObj = intel_texture_object(texObj); - if (!intelObj) + if (!texObj) return; if (dPriv->lastStamp != dPriv->dri2.stamp ||