Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dll_interface.h « oneapi « device « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc681ff8f640fc607c62b091fa30a64ce8464ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2011-2022 Blender Foundation */

#pragma once

/* Include kernel header to get access to sycl-specific types, like SyclQueue and
 * OneAPIDeviceIteratorCallback. */
#include "kernel/device/oneapi/kernel.h"

#ifdef WITH_ONEAPI
struct OneAPIDLLInterface {
#  define DLL_INTERFACE_CALL(function, return_type, ...) \
    return_type (*function)(__VA_ARGS__) = nullptr;
#  include "kernel/device/oneapi/dll_interface_template.h"
#  undef DLL_INTERFACE_CALL
};
#endif