Method
CoglObjectset_user_data
Declaration [src]
void
cogl_object_set_user_data (
CoglObject* object,
CoglUserDataKey* key,
void* user_data,
CoglUserDataDestroyCallback destroy
)
Description [src]
Associates some private user_data with a given CoglObject. To
later remove the association call cogl_object_set_user_data() with
the same key but NULL for the user_data.
| Available since: | 1.4 |
| This method is not directly available to language bindings. |
Parameters
key |
CoglUserDataKey |
The address of a |
|
| The data is owned by the caller of the function. | |
user_data |
void* |
The data to associate with the given object,
or |
|
The argument can be NULL. | |
| The data is owned by the caller of the function. | |
destroy |
CoglUserDataDestroyCallback |
A |