i965: Use pipe_buffer_* inlines as much as possible.

This commit is contained in:
José Fonseca
2008-09-04 09:33:47 +09:00
parent c93fff86ea
commit 65a094101f
@@ -92,10 +92,10 @@ static void brw_init_pool( struct brw_context *brw,
pool->size = size;
pool->brw = brw;
pool->buffer = brw->pipe.winsys->buffer_create(brw->pipe.winsys,
4096,
0 /* DRM_BO_FLAG_MEM_TT */,
size);
pool->buffer = pipe_buffer_create(brw->pipe.screen,
4096,
0 /* DRM_BO_FLAG_MEM_TT */,
size);
}
static void brw_destroy_pool( struct brw_context *brw,
@@ -103,7 +103,7 @@ static void brw_destroy_pool( struct brw_context *brw,
{
struct brw_mem_pool *pool = &brw->pool[pool_id];
winsys_buffer_reference( pool->brw->pipe.winsys,
pipe_buffer_reference( pool->brw->pipe.screen,
&pool->buffer,
NULL );
}