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:
authorHans Goudey <h.goudey@me.com>2021-04-02 00:23:16 +0300
committerHans Goudey <h.goudey@me.com>2021-04-02 00:23:16 +0300
commitc5d99683921060d1974fc0a5fb35522de9a768b0 (patch)
treea25d0e5e66d36ccbe1e4ca699e5db4c61e84bdab /source/blender/blenkernel/BKE_geometry_set.h
parent3ca1cf2b5197c0c2d5afa44ac28e7b63d401b489 (diff)
Cleanup: Remove unecessary part of instances component C API
Now that object_dupli.cc is a C++ file, we don't have to have a specific function to retrieve the instance data from the geometry set.
Diffstat (limited to 'source/blender/blenkernel/BKE_geometry_set.h')
-rw-r--r--source/blender/blenkernel/BKE_geometry_set.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/blenkernel/BKE_geometry_set.h b/source/blender/blenkernel/BKE_geometry_set.h
index 08b4a25d946..c00310408af 100644
--- a/source/blender/blenkernel/BKE_geometry_set.h
+++ b/source/blender/blenkernel/BKE_geometry_set.h
@@ -55,11 +55,6 @@ typedef struct InstancedData {
} data;
} InstancedData;
-int BKE_geometry_set_instances(const struct GeometrySet *geometry_set,
- float (**r_transforms)[4][4],
- const int **r_almost_unique_ids,
- struct InstancedData **r_instanced_data);
-
#ifdef __cplusplus
}
#endif