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