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:
authorNicholas Bishop <nicholasbishop@gmail.com>2008-08-14 03:53:28 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2008-08-14 03:53:28 +0400
commitd2537c77ccc259d7007c6ffa2af2dd42713c020e (patch)
tree7bcbb6d43e0f6424ae0e27bc2ffb107d4113198f /source/blender/include
parent85292aacc954c552a2f4dc20f9df33dba92eeeea (diff)
Removed a bunch of references to the old multires.
Note: python needs updating to work with the new multires. For now, I've just been commenting out the python multires stuff with #warnings
Diffstat (limited to 'source/blender/include')
-rw-r--r--source/blender/include/multires.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/source/blender/include/multires.h b/source/blender/include/multires.h
index e4726c02d7e..87b10010873 100644
--- a/source/blender/include/multires.h
+++ b/source/blender/include/multires.h
@@ -30,30 +30,8 @@
#ifndef MULTIRES_H
#define MULTIRES_H
-struct CustomData;
-struct EditMesh;
-struct Object;
-struct MDeformVert;
-struct Mesh;
-struct MultiresLevel;
-struct Multires;
-struct uiBlock;
-
/* For canceling operations that don't work with multires on or on a non-base level */
int multires_test();
int multires_level1_test();
-void multires_draw_interface(struct uiBlock *block, unsigned short cx, unsigned short cy);
-
-void multires_make(void *ob, void *me);
-void multires_delete(void *ob, void *me);
-void multires_level_to_editmesh(struct Object *ob, struct Mesh *me, const int render);
-void multires_finish_mesh_update(struct Object *ob);
-void multires_subdivide(void *ob, void *me);
-void multires_del_lower(void *ob, void *me);
-void multires_del_higher(void *ob, void *me);
-void multires_set_level_cb(void *ob, void *me);
-void multires_edge_level_update_cb(void *ob, void *me);
-int multires_modifier_warning();
-
#endif