
* Replace license text in headers with SPDX identifiers. * Remove specific license info from outdated readme.txt, instead leave details to the source files. * Add list of SPDX license identifiers used, and corresponding license texts. * Update copyright dates while we're at it. Ref D14069, T95597
17 lines
391 B
C
17 lines
391 B
C
/* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright 2019-2022 Blender Foundation */
|
|
|
|
#ifndef __JITTER_H__
|
|
#define __JITTER_H__
|
|
|
|
#include "util/types.h"
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
void progressive_multi_jitter_generate_2D(float2 points[], int size, int rng_seed);
|
|
void progressive_multi_jitter_02_generate_2D(float2 points[], int size, int rng_seed);
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
#endif /* __JITTER_H__ */
|