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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-05-29 14:41:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-29 14:41:00 +0400
commit32ee1625d357ed3b299874f60e544d9f9e402130 (patch)
tree2effa6d7c50ed136e7f87a6fdb112e688f6b5f63 /source
parent9e2f377273d60ec8de09f2c5c6f140908bc5f9a6 (diff)
more plugin removal
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/interface/resources.c1
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h24
-rw-r--r--source/blender/makesdna/DNA_texture_types.h26
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h4
4 files changed, 1 insertions, 54 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index b1f353b2808..f4fa88caba0 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -1245,7 +1245,6 @@ void init_userdef_do_versions(void)
vDM_ColorBand_store((U.flag & USER_CUSTOM_RANGE) ? (&U.coba_weight) : NULL);
if (bmain->versionfile <= 191) {
- BLI_strncpy(U.plugtexdir, U.textudir, sizeof(U.plugtexdir));
strcpy(U.sounddir, "/");
}
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index 2543ff18b2e..b4dc40a81c3 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -101,28 +101,6 @@ typedef struct Strip {
StripColorBalance *color_balance;
} Strip;
-
-typedef struct PluginSeq {
- char name[1024]; /* 1024 = FILE_MAX */
- void *handle;
-
- char *pname;
-
- int vars, version;
-
- void *varstr;
- float *cfra;
-
- float data[32];
-
- void *instance_private_data;
- void **current_private_data;
-
- void (*doit)(void);
-
- void (*callback)(void);
-} PluginSeq;
-
/* The sequence structure is the basic struct used by any strip. each of the strips uses a different sequence structure.*/
/* WATCH IT: first part identical to ID (for use in ipo's) */
@@ -158,8 +136,6 @@ typedef struct Sequence {
float effect_fader;
float speed_fader;
- PluginSeq *plugin;
-
/* pointers for effects: */
struct Sequence *seq1, *seq2, *seq3;
diff --git a/source/blender/makesdna/DNA_texture_types.h b/source/blender/makesdna/DNA_texture_types.h
index 05053131eb0..606c466ac74 100644
--- a/source/blender/makesdna/DNA_texture_types.h
+++ b/source/blender/makesdna/DNA_texture_types.h
@@ -44,7 +44,6 @@ extern "C" {
struct AnimData;
struct Ipo;
-struct PluginTex;
struct ColorBand;
struct EnvMap;
struct Object;
@@ -104,30 +103,6 @@ typedef struct MTex {
typedef unsigned short dna_ushort_fix;
#endif
-typedef struct PluginTex {
- char name[1024];
- void *handle;
-
- char *pname;
- char *stnames;
-
- int stypes;
- int vars;
- void *varstr;
- float *result;
- float *cfra;
-
- float data[32];
-
- int (*doit)(void);
- void (*instance_init)(void *);
-
- /* should be void (*)(unsigned short)... patched */
- void (*callback)(dna_ushort_fix);
-
- int version, pad;
-} PluginTex;
-
typedef struct CBData {
float r, g, b, a, pos;
int cur;
@@ -267,7 +242,6 @@ typedef struct Tex {
struct bNodeTree *nodetree;
struct Ipo *ipo DNA_DEPRECATED; /* old animation system, deprecated for 2.5 */
struct Image *ima;
- struct PluginTex *plugin;
struct ColorBand *coba;
struct EnvMap *env;
struct PreviewImage * preview;
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index b0874eefa4a..be2268aa492 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -237,7 +237,7 @@ typedef struct ThemeSpace {
char syntaxv[4], syntaxc[4];
char movie[4], movieclip[4], image[4], scene[4], audio[4]; // for sequence editor
- char effect[4], plugin[4], transition[4], meta[4];
+ char effect[4], hpad0[4], transition[4], meta[4];
char editmesh_active[4];
char handle_vertex[4];
@@ -334,8 +334,6 @@ typedef struct UserDef {
char fontdir[768];
char renderdir[1024]; /* FILE_MAX length */
char textudir[768];
- char plugtexdir[768];
- char plugseqdir[768];
char pythondir[768];
char sounddir[768];
char image_editor[1024]; /* 1024 = FILE_MAX */