/* * Copyright (C) 2019-2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "core/memory_manager/memory_operations_handler.h" namespace NEO { class DrmMemoryOperationsHandler : public MemoryOperationsHandler { public: DrmMemoryOperationsHandler(); ~DrmMemoryOperationsHandler() override = default; MemoryOperationsStatus makeResident(ArrayRef gfxAllocations) override; MemoryOperationsStatus evict(GraphicsAllocation &gfxAllocation) override; MemoryOperationsStatus isResident(GraphicsAllocation &gfxAllocation) override; }; } // namespace NEO