~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_bad_level_calls.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * Stuff that definitely does not belong in the kernel! These will all
5
5
 * have to be removed in order to restore sanity.
6
6
 *
7
 
 * $Id: BKE_bad_level_calls.h,v 1.8 2004/04/29 15:56:25 ton Exp $ 
 
7
 * $Id: BKE_bad_level_calls.h,v 1.13 2005/05/08 21:20:32 ianwill Exp $ 
8
8
 *
9
9
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
10
10
 *
50
50
void freeAllRad(void);
51
51
void free_editText(void);
52
52
void setscreen(struct bScreen *sc);
53
 
void force_draw_all(void);
 
53
void force_draw_all(int);
54
54
  /* otherwise the WHILE_SEQ doesn't work */
55
55
struct Sequence;
56
56
struct ListBase;
58
58
 
59
59
struct ID;
60
60
struct Script;
 
61
struct Text;
61
62
void BPY_do_pyscript (struct ID *id, short int event);
62
63
void BPY_clear_script (struct Script *script);
 
64
void BPY_free_compiled_text (struct Text *text);
 
65
void BPY_free_screen_spacehandlers (struct bScreen *sc);
63
66
 
64
67
/* writefile.c */
65
68
struct Oops;
87
90
/* exotic.c */
88
91
void load_editMesh(void);
89
92
void make_editMesh(void);
90
 
void free_editMesh(void);
 
93
struct EditMesh;
 
94
void free_editMesh(struct EditMesh *);
91
95
void free_editArmature(void);
92
96
void docentre_new(void);
93
97
int saveover(char *str);
132
136
struct EnvMap *RE_copy_envmap(struct EnvMap *env);
133
137
void    RE_free_envmapdata(struct EnvMap *env);
134
138
int     RE_envmaptex(struct Tex *tex, float *texvec, float *dxt, float *dyt);
135
 
void    RE_calc_R_ref(void);
136
139
extern char texstr[20][12];     /* buttons.c */
137
140
 
138
 
/* memory for O is declared in the render module... */
139
 
#include "BKE_osa_types.h"
140
 
extern Osa O;
141
141
 
142
142
/* editsca.c */
143
143
void make_unique_prop_names(char *str);
144
144
 
 
145
/* DerivedMesh.c */
 
146
void bglBegin(int mode);
 
147
void bglVertex3fv(float *vec);
 
148
void bglEnd(void);
 
149
 
145
150
#endif
146
151