docs: Detail replacement for cogl_check_extension()

The cogl_check_extension() function has been deprecated, but it's easily
replaceable with a simple strstr() call.
This commit is contained in:
Emmanuele Bassi 2010-02-24 11:28:44 +00:00
parent f9fe4526eb
commit 984c19a6f7

View File

@ -127,11 +127,14 @@ cogl_get_proc_address (const char *name);
* *
* Check whether @name occurs in list of extensions in @ext. * Check whether @name occurs in list of extensions in @ext.
* *
* Return value: %TRUE if the extension occurs in the list, %FALSE otherwize. * Return value: %TRUE if the extension occurs in the list, %FALSE otherwise.
* *
* Deprecated: 1.2: OpenGL is an implementation detail for Cogl and so it's not * Deprecated: 1.2: OpenGL is an implementation detail for Cogl and so it's
* appropriate to expose OpenGL extensions through the Cogl * not appropriate to expose OpenGL extensions through the Cogl API. This
* API. * function can be replaced by the following equivalent code:
* |[
* gboolean retval = (strstr (ext, name) != NULL) ? TRUE : FALSE;
* ]|
*/ */
gboolean gboolean
cogl_check_extension (const char *name, cogl_check_extension (const char *name,