Module: Mesa Branch: master Commit: 2f0fa456e31a7030c911a563b62c84d448b09800 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2f0fa456e31a7030c911a563b62c84d448b09800
Author: Brian Paul <[email protected]> Date: Thu Jan 12 09:50:27 2012 -0700 meta: fix incorrect argument order in setup_texture_coords() call And pass integer width, height values. NOTE: This is a candidate for the 8.0 branch. Reviewed-by: José Fonseca <[email protected]> --- src/mesa/drivers/common/meta.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index ad289aa..abf2f1f 100644 --- a/src/mesa/drivers/common/meta.c +++ b/src/mesa/drivers/common/meta.c @@ -2920,8 +2920,8 @@ _mesa_meta_GenerateMipmap(struct gl_context *ctx, GLenum target, /* setup texcoords (XXX what about border?) */ setup_texture_coords(faceTarget, - 0.0f, 0.0f, /* width, height never used here */ slice, + 0, 0, /* width, height never used here */ verts[0].tex, verts[1].tex, verts[2].tex, _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
