style cleanup: use capital camel case names for typedef's

This commit is contained in:
2012-06-10 15:20:10 +00:00
parent 10932e2e97
commit 5534701e5d
12 changed files with 122 additions and 120 deletions

View File

@@ -444,9 +444,9 @@ PyObject * Image_getImage (PyImage * self, char * mode)
// get an empty buffer
buffer = BGL_MakeBuffer( GL_BYTE, 1, &dimensions, NULL);
// and fill it
for (i=0, d=(unsigned char*)buffer->buf.asbyte, s=(unsigned char*)image;
i<pixels;
++i, d+=ncolor, s+=4)
for (i = 0, d = (unsigned char *)buffer->buf.asbyte, s = (unsigned char *)image;
i < pixels;
i++, d += ncolor, s += 4)
{
for (c=0; c<ncolor; c++)
{