From: Siavash Eliasi Date: Thu, 28 Nov 2013 08:56:39 +0000 (+0330) Subject: nouveau: Use gl_constants::MinMapBufferAlignment as the alignment in nouveau_bo_new X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b9aaa96ec3a75cdb5ce57e3487441b113391acc9;p=mesa.git nouveau: Use gl_constants::MinMapBufferAlignment as the alignment in nouveau_bo_new This driver does not support GL_ARB_map_buffer_range, so no special treatment is needed for unaligned offsets in the mapping. Reviewed-by: Ian Romanick --- diff --git a/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c b/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c index 717c0b8f11d..dc165853759 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c @@ -95,7 +95,8 @@ nouveau_bufferobj_data(struct gl_context *ctx, GLenum target, GLsizeiptrARB size } else { /* Get a hardware BO */ ret = nouveau_bo_new(context_dev(ctx), - NOUVEAU_BO_GART | NOUVEAU_BO_MAP, 0, + NOUVEAU_BO_GART | NOUVEAU_BO_MAP, + ctx->Const.MinMapBufferAlignment, size, NULL, &nbo->bo); assert(!ret); }