Simple warning fixes

This commit is contained in:
Andre Susano Pinto
2008-11-04 01:05:44 +00:00
parent 1f83dffeb4
commit ca80578e4e
4 changed files with 5 additions and 7 deletions

View File

@@ -35,7 +35,7 @@ struct Lattice;
struct Object;
struct DerivedMesh;
struct BPoint;
struct MDeform;
struct MDeformVert;
extern struct Lattice *editLatt;
@@ -68,7 +68,7 @@ float (*lattice_getVertexCos(struct Object *ob, int *numVerts_r))[3];
void lattice_applyVertexCos(struct Object *ob, float (*vertexCos)[3]);
void lattice_calc_modifiers(struct Object *ob);
struct MDeform* lattice_get_deform_verts(struct Object *lattice);
struct MDeformVert* lattice_get_deform_verts(struct Object *lattice);
#endif

View File

@@ -96,7 +96,7 @@ void space_transform_invert_normal(const SpaceTransform *data, float *no);
struct Object;
struct DerivedMesh;
struct ShrinkwrapModifierData;
struct MDeform;
struct MDeformVert;
struct BVHTree;
@@ -110,7 +110,7 @@ typedef struct ShrinkwrapCalcData
float (*vertexCos)[3]; //vertexs being shrinkwraped
int numVerts;
struct MDeform* dvert; //Pointer to mdeform array
struct MDeformVert* dvert; //Pointer to mdeform array
int vgroup; //Vertex group num
struct DerivedMesh *target; //mesh we are shrinking to

View File

@@ -929,7 +929,7 @@ void lattice_calc_modifiers(Object *ob)
}
}
struct MDeform* lattice_get_deform_verts(struct Object *oblatt)
struct MDeformVert* lattice_get_deform_verts(struct Object *oblatt)
{
if(oblatt->type == OB_LATTICE)
{

View File

@@ -69,8 +69,6 @@
#include "reeb.h"
/* REPLACE WITH NEW ONE IN UTILDEFINES ONCE PATCH IS APPLIED */
#define FTOCHAR(val) (val<=0.0f)? 0 : ((val>(1.0f-0.5f/255.0f))? 255 : (char)((255.0f*val)+0.5f))
ReebGraph *GLOBAL_RG = NULL;
ReebGraph *FILTERED_RG = NULL;