mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
15 lines
295 B
C++
15 lines
295 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2022 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "opencl/source/mem_obj/buffer.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
bool Buffer::validateHandleType(MemoryProperties &memoryProperties, UnifiedSharingMemoryDescription &extMem) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
} // namespace NEO
|