2023-06-14 16:52:36 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
2015-07-18 22:36:09 +02:00
|
|
|
|
|
|
|
|
#ifndef __BLENDER_TEXTURE_H__
|
|
|
|
|
#define __BLENDER_TEXTURE_H__
|
|
|
|
|
|
2021-10-24 14:19:19 +02:00
|
|
|
#include "blender/sync.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
#include <stdlib.h>
|
2015-07-18 22:36:09 +02:00
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
|
2018-02-28 13:54:00 -03:00
|
|
|
void point_density_texture_space(BL::Depsgraph &b_depsgraph,
|
2016-01-30 14:18:29 +01:00
|
|
|
BL::ShaderNodeTexPointDensity &b_point_density_node,
|
2015-07-18 22:36:09 +02:00
|
|
|
float3 &loc,
|
|
|
|
|
float3 &size);
|
|
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|
|
|
|
|
|
#endif /* __BLENDER_TEXTURE_H__ */
|