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:
authorBastien Montagne <b.mont29@gmail.com>2020-03-06 18:52:42 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-03-06 19:13:27 +0300
commitf4936de9186be818e758408f70fb8e9d8c7cdade (patch)
treef867e3a31c97e9fa048abe0df9310bd8ec156f32 /source/blender/blenkernel/BKE_texture.h
parenta7fb567c18b5a831f7276a7d9a01646a177e6b5b (diff)
Cleanup: Texture: Move to IDTypeInfo and remove unused BKE API.
Diffstat (limited to 'source/blender/blenkernel/BKE_texture.h')
-rw-r--r--source/blender/blenkernel/BKE_texture.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/blenkernel/BKE_texture.h b/source/blender/blenkernel/BKE_texture.h
index 1d8b0b41c83..0f852bdc64d 100644
--- a/source/blender/blenkernel/BKE_texture.h
+++ b/source/blender/blenkernel/BKE_texture.h
@@ -42,16 +42,10 @@ struct TexResult;
/* in ColorBand struct */
#define MAXCOLORBAND 32
-void BKE_texture_free(struct Tex *tex);
void BKE_texture_default(struct Tex *tex);
-void BKE_texture_copy_data(struct Main *bmain,
- struct Tex *tex_dst,
- const struct Tex *tex_src,
- const int flag);
struct Tex *BKE_texture_copy(struct Main *bmain, const struct Tex *tex);
struct Tex *BKE_texture_add(struct Main *bmain, const char *name);
struct Tex *BKE_texture_localize(struct Tex *tex);
-void BKE_texture_make_local(struct Main *bmain, struct Tex *tex, const int flags);
void BKE_texture_type_set(struct Tex *tex, int type);
void BKE_texture_mtex_default(struct MTex *mtex);