From 07e7589d86624e9c1ca4c38d00cf6886e1445ae2 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Tue, 11 May 2010 08:54:06 +0100 Subject: intel: query whether a buffer is reusable. Signed-off-by: Chris Wilson --- intel/intel_bufmgr.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'intel/intel_bufmgr.c') diff --git a/intel/intel_bufmgr.c b/intel/intel_bufmgr.c index ce21a332..9144fdd4 100644 --- a/intel/intel_bufmgr.c +++ b/intel/intel_bufmgr.c @@ -229,6 +229,13 @@ int drm_intel_bo_disable_reuse(drm_intel_bo *bo) return 0; } +int drm_intel_bo_is_reusable(drm_intel_bo *bo) +{ + if (bo->bufmgr->bo_is_reusable) + return bo->bufmgr->bo_is_reusable(bo); + return 0; +} + int drm_intel_bo_busy(drm_intel_bo *bo) { if (bo->bufmgr->bo_busy) -- cgit v1.2.3