mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 16:48:45 +08:00
Change-Id: I6c01d065ff3372fe7583ed50ed51595ebeb53e54 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
28 lines
558 B
C++
28 lines
558 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/linux/drm_memory_operations_handler.h"
|
|
|
|
namespace NEO {
|
|
|
|
DrmMemoryOperationsHandler::DrmMemoryOperationsHandler() {
|
|
}
|
|
|
|
bool DrmMemoryOperationsHandler::makeResident(GraphicsAllocation &gfxAllocation) {
|
|
return false;
|
|
}
|
|
|
|
bool DrmMemoryOperationsHandler::evict(GraphicsAllocation &gfxAllocation) {
|
|
return false;
|
|
}
|
|
|
|
bool DrmMemoryOperationsHandler::isResident(GraphicsAllocation &gfxAllocation) {
|
|
return false;
|
|
}
|
|
|
|
} // namespace NEO
|