mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Change-Id: I5434e30b5200d89d9912aeb7a06b230220ec1de4 Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
23 lines
628 B
C++
23 lines
628 B
C++
/*
|
|
* 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<GraphicsAllocation *> gfxAllocations) override;
|
|
MemoryOperationsStatus evict(GraphicsAllocation &gfxAllocation) override;
|
|
MemoryOperationsStatus isResident(GraphicsAllocation &gfxAllocation) override;
|
|
};
|
|
} // namespace NEO
|