2018-07-13 18:50:55 +02:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2018-07-13 18:50:55 +02:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-07-13 18:50:55 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2021-07-14 01:00:49 +02:00
|
|
|
#include <cstddef>
|
2021-05-19 20:12:09 +00:00
|
|
|
#include <cstdint>
|
2018-08-17 13:38:09 +02:00
|
|
|
#include <utility>
|
2019-02-27 11:39:32 +01:00
|
|
|
#include <vector>
|
2018-07-13 18:50:55 +02:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-07-13 18:50:55 +02:00
|
|
|
class GraphicsAllocation;
|
|
|
|
using ResidencyContainer = std::vector<GraphicsAllocation *>;
|
2018-08-17 13:38:09 +02:00
|
|
|
using AllocationView = std::pair<uint64_t /*address*/, size_t /*size*/>;
|
2018-07-13 18:50:55 +02:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|