mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 07:18:17 +02:00
radeon bo: Fix merge fall out
This commit is contained in:
parent
582838a666
commit
1e8a6068ee
1 changed files with 7 additions and 0 deletions
|
|
@ -187,6 +187,13 @@ static inline int _radeon_bo_wait(struct radeon_bo *bo,
|
|||
return bo->bom->funcs->bo_wait(bo);
|
||||
}
|
||||
|
||||
static inline int radeon_bo_is_static(struct radeon_bo *bo)
|
||||
{
|
||||
if (bo->bom->funcs->bo_is_static)
|
||||
return bo->bom->funcs->bo_is_static(bo);
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef RADEON_DEBUG_BO
|
||||
#define radeon_bo_open(bom, h, s, a, d, f, u)\
|
||||
_radeon_bo_open(bom, h, s, a, d, f, u, __FILE__, __FUNCTION__, __LINE__)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue