2023-04-28 15:05:36 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2023 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "opencl/source/mem_obj/image.h"
|
|
|
|
|
#include "opencl/source/sharings/unified/unified_sharing_types.h"
|
|
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
bool Image::validateHandleType(MemoryProperties &memoryProperties, UnifiedSharingMemoryDescription &extMem) {
|
2023-12-13 16:09:52 +00:00
|
|
|
if (memoryProperties.handleType == static_cast<uint64_t>(UnifiedSharingHandleType::linuxFd)) {
|
|
|
|
|
extMem.type = UnifiedSharingHandleType::linuxFd;
|
2023-04-28 15:05:36 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|