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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-01-20 09:54:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-20 09:54:38 +0300
commit3fb8191d1dbd5c50c8bd5b0821e7cf1bb9885736 (patch)
tree1ee279ecf0b6eeee56f1d5e3378d301ff5893cb9 /source/blender/blenkernel/intern/lightprobe.c
parent9b70950e3c93986db216c28396aacdd6343a10aa (diff)
Cleanup: rename lightprobe configure to type_set
Consistent with similar API functions.
Diffstat (limited to 'source/blender/blenkernel/intern/lightprobe.c')
-rw-r--r--source/blender/blenkernel/intern/lightprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/lightprobe.c b/source/blender/blenkernel/intern/lightprobe.c
index 3a9c1c8ae1d..3cba3aa9611 100644
--- a/source/blender/blenkernel/intern/lightprobe.c
+++ b/source/blender/blenkernel/intern/lightprobe.c
@@ -41,7 +41,7 @@ void BKE_lightprobe_init(LightProbe *probe)
MEMCPY_STRUCT_AFTER(probe, DNA_struct_default_get(LightProbe), id);
}
-void BKE_lightprobe_configure(LightProbe *probe, const short lightprobe_type)
+void BKE_lightprobe_type_set(LightProbe *probe, const short lightprobe_type)
{
probe->type = lightprobe_type;