diff options
author | Marek Olšák <[email protected]> | 2015-09-01 04:14:33 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-09-03 18:41:42 +0200 |
commit | 54964c77510b060806615c842692c0f393e807e6 (patch) | |
tree | a164f71b5af0c04257beb3da2317b7ff9357cc15 /src | |
parent | 35d0f12797237cdd38e7fd2c39d3c19e875875ca (diff) |
winsys/amdgpu: remove exported buffers from the cache
Cc: 11.0 <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/winsys/amdgpu/drm/amdgpu_bo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c b/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c index 50c42e3599a..fe55dc3108a 100644 --- a/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c +++ b/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c @@ -684,6 +684,9 @@ static boolean amdgpu_bo_get_handle(struct pb_buffer *buffer, enum amdgpu_bo_handle_type type; int r; + if ((void*)bo != (void*)buffer) + pb_cache_manager_remove_buffer(buffer); + switch (whandle->type) { case DRM_API_HANDLE_TYPE_SHARED: type = amdgpu_bo_handle_type_gem_flink_name; |