Along with the 4.1 libraries upgrade, we are bumping the clang-format version from 8-12 to 17. This affects quite a few files. If not already the case, you may consider pointing your IDE to the clang-format binary bundled with the Blender precompiled libraries.
29 lines
862 B
C
29 lines
862 B
C
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#pragma once
|
|
|
|
#ifndef __KERNEL_GPU__
|
|
# include "util/profiling.h"
|
|
#endif
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
#ifndef __KERNEL_GPU__
|
|
# define PROFILING_INIT(kg, event) \
|
|
ProfilingHelper profiling_helper((ProfilingState *)&kg->profiler, event)
|
|
# define PROFILING_EVENT(event) profiling_helper.set_event(event)
|
|
# define PROFILING_INIT_FOR_SHADER(kg, event) \
|
|
ProfilingWithShaderHelper profiling_helper((ProfilingState *)&kg->profiler, event)
|
|
# define PROFILING_SHADER(object, shader) \
|
|
profiling_helper.set_shader(object, (shader) & SHADER_MASK);
|
|
#else
|
|
# define PROFILING_INIT(kg, event)
|
|
# define PROFILING_EVENT(event)
|
|
# define PROFILING_INIT_FOR_SHADER(kg, event)
|
|
# define PROFILING_SHADER(object, shader)
|
|
#endif /* !__KERNEL_GPU__ */
|
|
|
|
CCL_NAMESPACE_END
|