Freestyle: minor optimization for space by using a pointer to a const char array instead of std::string.

This commit is contained in:
Tamito Kajiyama
2014-07-25 12:23:09 +09:00
parent e58d788340
commit be980c4ee4
6 changed files with 14 additions and 13 deletions

View File

@@ -185,7 +185,7 @@ PyDoc_STRVAR(SShape_name_doc,
static PyObject *SShape_name_get(BPy_SShape *self, void *UNUSED(closure))
{
return PyUnicode_FromString(self->ss->getName().c_str());
return PyUnicode_FromString(self->ss->getName());
}
static int SShape_name_set(BPy_SShape *self, PyObject *value, void *UNUSED(closure))
@@ -194,7 +194,7 @@ static int SShape_name_set(BPy_SShape *self, PyObject *value, void *UNUSED(closu
PyErr_SetString(PyExc_TypeError, "value must be a string");
return -1;
}
const string name = _PyUnicode_AsString(value);
const char *name = _PyUnicode_AsString(value);
self->ss->setName(name);
return 0;
}

View File

@@ -293,7 +293,7 @@ PyDoc_STRVAR(ViewShape_name_doc,
static PyObject *ViewShape_name_get(BPy_ViewShape *self, void *UNUSED(closure))
{
return PyUnicode_FromString(self->vs->getName().c_str());
return PyUnicode_FromString(self->vs->getName());
}
PyDoc_STRVAR(ViewShape_id_doc,

View File

@@ -127,7 +127,7 @@ public:
return _Id;
}
inline const string& getName() const
inline const char *getName() const
{
return _Name;
}
@@ -148,7 +148,7 @@ public:
_Id = id;
}
inline void setName(const string& name)
inline void setName(const char *name)
{
_Name = name;
}
@@ -161,7 +161,7 @@ public:
private:
BBox<Vec3r> _BBox;
Id _Id;
string _Name;
const char *_Name;
FrsMaterial *_FrsMaterial;
};

View File

@@ -1415,7 +1415,7 @@ private:
vector<SVertex*> _verticesList; // list of all vertices
vector<FEdge*> _edgesList; // list of all edges
Id _Id;
string _Name;
const char *_Name;
BBox<Vec3r> _BBox;
vector<FrsMaterial> _FrsMaterials;
@@ -1435,6 +1435,7 @@ public:
userdata = NULL;
_importance = 0.0f;
_ViewShape = NULL;
_Name = NULL;
}
/*! Copy constructor */
@@ -1887,7 +1888,7 @@ public:
}
/*! Returns the name of the Shape. */
inline const string& getName() const
inline const char *getName() const
{
return _Name;
}
@@ -1900,7 +1901,7 @@ public:
}
/*! Sets the name of the shape.*/
inline void setName(const string& name)
inline void setName(const char *name)
{
_Name = name;
}

View File

@@ -1566,7 +1566,7 @@ public:
}
/*! Returns the ViewShape id. */
inline const string& getName() const
inline const char *getName() const
{
return _SShape->getName();
}

View File

@@ -1025,7 +1025,7 @@ protected:
vector<WEdge *> _EdgeList;
vector<WFace *> _FaceList;
int _Id;
string _Name;
const char *_Name;
static unsigned _SceneCurrentId;
Vec3r _min;
Vec3r _max;
@@ -1113,7 +1113,7 @@ public:
return _meanEdgeSize;
}
inline const string& getName() const
inline const char *getName() const
{
return _Name;
}
@@ -1160,7 +1160,7 @@ public:
_FrsMaterials = iMaterials;
}
inline void setName(const string& name)
inline void setName(const char *name)
{
_Name = name;
}