From: Alex Deucher Date: Mon, 3 Aug 2009 07:12:56 +0000 (-0400) Subject: r600: fix the build when RADEON_DEBUG_BO is set X-Git-Tag: 062012170305~17245 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=583ed4aae54c308009346c083a1a0d49d4361631;p=profile%2Fivi%2Fmesa.git r600: fix the build when RADEON_DEBUG_BO is set --- diff --git a/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c b/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c index 6084b35..e608520 100644 --- a/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c +++ b/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c @@ -916,7 +916,7 @@ struct bo_legacy *radeon_legacy_bo_alloc_fake(struct radeon_bo_manager *bom, struct bo_legacy *bo; #ifdef RADEON_DEBUG_BO - bo = bo_allocate(boml, size, 0, RADEON_GEM_DOMAIN_VRAM, 0, szBufUsage); + bo = bo_allocate(boml, size, 0, RADEON_GEM_DOMAIN_VRAM, 0, "fake bo"); #else bo = bo_allocate(boml, size, 0, RADEON_GEM_DOMAIN_VRAM, 0); #endif /* RADEON_DEBUG_BO */