Make a public CoglBitmapError enum
There are many places in the texture backend that need to do conversion using the CoglBitmap code. Currently none of these functions can throw an error but they do return a value to indicate failure. In future it would make sense if new texture functions could throw an error and in that case they would want to use a CoglBitmap error if the failure was due to the conversion. This moves the internal CoglBitmap error from the quartz backend to be public in cogl-bitmap.h so that it can be used in this way.
This commit is contained in:
@ -188,3 +188,8 @@ cogl_bitmap_new_from_file (const char *filename,
|
||||
return _cogl_bitmap_object_new (ret);
|
||||
}
|
||||
|
||||
GQuark
|
||||
cogl_bitmap_error_quark (void)
|
||||
{
|
||||
return g_quark_from_static_string ("cogl-bitmap-error-quark");
|
||||
}
|
||||
|
Reference in New Issue
Block a user