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:
authorCampbell Barton <ideasman42@gmail.com>2013-03-29 10:21:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-29 10:21:28 +0400
commitab41583bc2be591c0af921b243158e43a94505d7 (patch)
tree0273fcb73c9cd6fca9a6bf5bb687b1e9ac75a7b7 /source/gameengine/VideoTexture/ImageBase.cpp
parentc82617405642273d955e3f5a1e1a8beda129f97f (diff)
style cleanup
Diffstat (limited to 'source/gameengine/VideoTexture/ImageBase.cpp')
-rw-r--r--source/gameengine/VideoTexture/ImageBase.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/gameengine/VideoTexture/ImageBase.cpp b/source/gameengine/VideoTexture/ImageBase.cpp
index 5a11cd24bcf..4109981a98c 100644
--- a/source/gameengine/VideoTexture/ImageBase.cpp
+++ b/source/gameengine/VideoTexture/ImageBase.cpp
@@ -124,7 +124,7 @@ void ImageBase::refresh (void)
// get source object
-PyImage * ImageBase::getSource (const char * id)
+PyImage * ImageBase::getSource (const char *id)
{
// find source
ImageSourceList::iterator src = findSource(id);
@@ -134,7 +134,7 @@ PyImage * ImageBase::getSource (const char * id)
// set source object
-bool ImageBase::setSource (const char * id, PyImage *source)
+bool ImageBase::setSource (const char *id, PyImage *source)
{
// find source
ImageSourceList::iterator src = findSource(id);
@@ -223,7 +223,7 @@ void ImageBase::init (short width, short height)
// find source
-ImageSourceList::iterator ImageBase::findSource (const char * id)
+ImageSourceList::iterator ImageBase::findSource (const char *id)
{
// iterate sources
ImageSourceList::iterator it;
@@ -294,7 +294,7 @@ bool ImageBase::loopDetect (ImageBase * img)
// ImageSource class implementation
// constructor
-ImageSource::ImageSource (const char * id) : m_source(NULL), m_image(NULL)
+ImageSource::ImageSource (const char *id) : m_source(NULL), m_image(NULL)
{
// copy id
int idx;
@@ -312,9 +312,9 @@ ImageSource::~ImageSource (void)
// compare id
-bool ImageSource::is (const char * id)
+bool ImageSource::is (const char *id)
{
- for (char * myId = m_id; *myId != '\0'; ++myId, ++id)
+ for (char *myId = m_id; *myId != '\0'; ++myId, ++id)
if (*myId != *id) return false;
return *id == '\0';
}
@@ -551,7 +551,7 @@ int Image_setFlip(PyImage *self, PyObject *value, void *closure)
}
// get zbuff
-PyObject *Image_getZbuff(PyImage * self, void *closure)
+PyObject *Image_getZbuff(PyImage *self, void *closure)
{
if (self->m_image != NULL && self->m_image->getZbuff()) Py_RETURN_TRUE;
else Py_RETURN_FALSE;
@@ -573,7 +573,7 @@ int Image_setZbuff(PyImage *self, PyObject *value, void *closure)
}
// get depth
-PyObject *Image_getDepth(PyImage * self, void *closure)
+PyObject *Image_getDepth(PyImage *self, void *closure)
{
if (self->m_image != NULL && self->m_image->getDepth()) Py_RETURN_TRUE;
else Py_RETURN_FALSE;
@@ -601,7 +601,7 @@ int Image_setDepth(PyImage *self, PyObject *value, void *closure)
PyObject *Image_getSource(PyImage *self, PyObject *args)
{
// get arguments
- char * id;
+ char *id;
if (!PyArg_ParseTuple(args, "s:getSource", &id))
return NULL;
if (self->m_image != NULL)
@@ -625,7 +625,7 @@ PyObject *Image_getSource(PyImage *self, PyObject *args)
PyObject *Image_setSource(PyImage *self, PyObject *args)
{
// get arguments
- char * id;
+ char *id;
PyObject *obj;
if (!PyArg_ParseTuple(args, "sO:setSource", &id, &obj))
return NULL;