2018-07-13 18:50:55 +02:00
|
|
|
/*
|
2018-09-18 09:11:08 +02:00
|
|
|
* Copyright (C) 2018 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
|
|
|
|
|
#include <vector>
|
2018-08-17 13:38:09 +02:00
|
|
|
#include <utility>
|
2018-07-13 18:50:55 +02:00
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
|
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
|
|
|
|
|
|
|
|
} // namespace OCLRT
|