From: Jason Ekstrand Date: Sat, 19 Aug 2017 21:54:42 +0000 (-0700) Subject: i965/tex: Change the flags type on create_for_teximage X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cadcd89278edcda8aba28a38da2ea6690207b38b;p=mesa.git i965/tex: Change the flags type on create_for_teximage This matches the actual function declaration. Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/intel_tex.h b/src/mesa/drivers/dri/i965/intel_tex.h index 376f075c9ee..beefc4b61b0 100644 --- a/src/mesa/drivers/dri/i965/intel_tex.h +++ b/src/mesa/drivers/dri/i965/intel_tex.h @@ -49,7 +49,7 @@ struct intel_mipmap_tree * intel_miptree_create_for_teximage(struct brw_context *brw, struct intel_texture_object *intelObj, struct intel_texture_image *intelImage, - uint32_t layout_flags); + enum intel_miptree_create_flags flags); void intel_finalize_mipmap_tree(struct brw_context *brw, GLuint unit);