Fix warning by check-doc-syntax

The check-doc-syntax step of 'make check' reports:

./cairo-gl.h: * cairo_device_t, which represents an GL context created by the user.
Error: some function names in the docs are not followed by parentheses.
Fix this by searching for the following regexp in the above files:
    '^[^:]*:[/ ][*]\(\|[  ].*\)\([^#']\|^\)\<\(cairo_[][<>/0-9a-z_]*\>[^][<>(]\)'
This commit is contained in:
Andrea Canciani 2011-03-15 23:40:35 +01:00
parent e4c042d059
commit 7ea7a7714b

View file

@ -43,7 +43,7 @@
*
* Cairo-gl allows interoperability with other GL rendering through GL
* context sharing. Cairo-gl surfaces are created in reference to a
* cairo_device_t, which represents an GL context created by the user.
* #cairo_device_t, which represents an GL context created by the user.
* When that GL context is created with its sharePtr set to another
* context (or vice versa), its objects (textures backing cairo-gl
* surfaces) can be accessed in the other OpenGL context. This allows