mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
16 lines
283 B
C++
16 lines
283 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/api/additional_extensions.h"
|
|
|
|
namespace NEO {
|
|
void *CL_API_CALL getAdditionalExtensionFunctionAddress(const char *funcName) {
|
|
return nullptr;
|
|
}
|
|
|
|
} // namespace NEO
|