mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
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
|