pixel-array: rename new_from_size to new_with_size

It is more in keeping with other coding conventions in Cogl to use new
"with" size instead of new "from" size.
This commit is contained in:
Robert Bragg
2010-07-04 00:45:12 +01:00
parent a46cc22c1b
commit daa34aeb0e
2 changed files with 10 additions and 10 deletions

View File

@@ -129,10 +129,10 @@ cogl_pixel_array_new (unsigned int size)
}
CoglPixelArray *
cogl_pixel_array_new_for_size (unsigned int width,
unsigned int height,
CoglPixelFormat format,
unsigned int *rowstride)
cogl_pixel_array_new_with_size (unsigned int width,
unsigned int height,
CoglPixelFormat format,
unsigned int *rowstride)
{
CoglPixelArray *buffer;
CoglPixelArray *pixel_array;