mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 09:03:14 +08:00
Change-Id: I2f763be185350de7b76838c9f101a1f8026f42c9 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
15 lines
305 B
C++
15 lines
305 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/memory_manager/graphics_allocation.h"
|
|
|
|
namespace OCLRT {
|
|
StorageInfo GraphicsAllocation::createStorageInfoFromProperties(const AllocationProperties &properties) {
|
|
return {};
|
|
}
|
|
} // namespace OCLRT
|