summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/nouveau/nouveau_buffers.c
diff options
context:
space:
mode:
authorBen Skeggs <skeggsb@gmail.com>2007-08-13 17:21:02 +1000
committerBen Skeggs <skeggsb@gmail.com>2007-08-15 14:31:25 +1000
commit40e8ce700b0e1711e08e9f33c297d495c43598b1 (patch)
tree13f860db820e5f58e1fa09abfe9b1c662c4eaa0d /src/mesa/drivers/dri/nouveau/nouveau_buffers.c
parent386a70eeb5982976239a2d37b63cde307cfbc22c (diff)
nouveau: reindent nouveau_buffers.h
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nouveau_buffers.c')
-rw-r--r--src/mesa/drivers/dri/nouveau/nouveau_buffers.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_buffers.c b/src/mesa/drivers/dri/nouveau/nouveau_buffers.c
index 5c5c7932bb..7cf739fe47 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_buffers.c
+++ b/src/mesa/drivers/dri/nouveau/nouveau_buffers.c
@@ -89,7 +89,7 @@ void nouveau_mem_free(GLcontext * ctx, nouveau_mem * mem)
FREE(mem);
}
-nouveau_mem *nouveau_mem_alloc(GLcontext * ctx, int type, GLuint size,
+nouveau_mem *nouveau_mem_alloc(GLcontext *ctx, uint32_t flags, GLuint size,
GLuint align)
{
nouveauContextPtr nmesa = NOUVEAU_CONTEXT(ctx);
@@ -99,15 +99,15 @@ nouveau_mem *nouveau_mem_alloc(GLcontext * ctx, int type, GLuint size,
if (NOUVEAU_DEBUG & DEBUG_MEM) {
fprintf(stderr,
- "%s: requested: type=0x%x, size=0x%x, align=0x%x\n",
- __func__, type, (GLuint) size, align);
+ "%s: requested: flags=0x%x, size=0x%x, align=0x%x\n",
+ __func__, flags, (GLuint) size, align);
}
mem = CALLOC(sizeof(nouveau_mem));
if (!mem)
return NULL;
- mema.flags = type;
+ mema.flags = flags;
mema.size = mem->size = size;
mema.alignment = align;
mem->map = NULL;
@@ -127,10 +127,9 @@ nouveau_mem *nouveau_mem_alloc(GLcontext * ctx, int type, GLuint size,
(GLuint) mem->size);
}
- if (type & NOUVEAU_MEM_MAPPED)
- ret =
- drmMap(nmesa->driFd, mema.map_handle, mem->size,
- &mem->map);
+ if (flags & NOUVEAU_MEM_MAPPED)
+ ret = drmMap(nmesa->driFd, mema.map_handle, mem->size,
+ &mem->map);
if (ret) {
mem->map = NULL;
nouveau_mem_free(ctx, mem);