Module: Mesa Branch: master Commit: cadcd89278edcda8aba28a38da2ea6690207b38b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=cadcd89278edcda8aba28a38da2ea6690207b38b
Author: Jason Ekstrand <[email protected]> Date: Sat Aug 19 14:54:42 2017 -0700 i965/tex: Change the flags type on create_for_teximage This matches the actual function declaration. Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/intel_tex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/intel_tex.h b/src/mesa/drivers/dri/i965/intel_tex.h index 376f075c9e..beefc4b61b 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); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
