2019-08-21 10:53:07 +02:00
|
|
|
/*
|
2020-01-09 17:21:52 +01:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-08-21 10:53:07 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "runtime/os_interface/linux/drm_memory_operations_handler.h"
|
|
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
DrmMemoryOperationsHandler::DrmMemoryOperationsHandler() {
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-09 17:21:52 +01:00
|
|
|
MemoryOperationsStatus DrmMemoryOperationsHandler::makeResident(ArrayRef<GraphicsAllocation *> gfxAllocations) {
|
2019-08-29 13:46:49 +02:00
|
|
|
return MemoryOperationsStatus::UNSUPPORTED;
|
2019-08-21 10:53:07 +02:00
|
|
|
}
|
|
|
|
|
|
2019-08-29 13:46:49 +02:00
|
|
|
MemoryOperationsStatus DrmMemoryOperationsHandler::evict(GraphicsAllocation &gfxAllocation) {
|
|
|
|
|
return MemoryOperationsStatus::UNSUPPORTED;
|
2019-08-21 10:53:07 +02:00
|
|
|
}
|
|
|
|
|
|
2019-08-29 13:46:49 +02:00
|
|
|
MemoryOperationsStatus DrmMemoryOperationsHandler::isResident(GraphicsAllocation &gfxAllocation) {
|
|
|
|
|
return MemoryOperationsStatus::UNSUPPORTED;
|
2019-08-21 10:53:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|