summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2009-08-06 10:40:32 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2009-08-06 10:40:32 +0100
commit19f54d872fcfa9801abee9c57e30c6b3fc7eef40 (patch)
treea4f5bf56b99e66d59d7fc05d2f0b2c55f12bdb8b /src
parentee69f8aa5e0697aaeee9c00839fb7b30fe7e3184 (diff)
[gl] Move hidden cairo_gl_surface_create() proto to header
Make check-plt.sh happy
Diffstat (limited to 'src')
-rw-r--r--src/cairo-gl-private.h2
-rw-r--r--src/cairo-gl-surface.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/cairo-gl-private.h b/src/cairo-gl-private.h
index 110df34e6..8efab8f8e 100644
--- a/src/cairo-gl-private.h
+++ b/src/cairo-gl-private.h
@@ -212,4 +212,6 @@ _cairo_gl_y_flip (cairo_gl_surface_t *surface, int y)
return (surface->height - 1) - y;
}
+slim_hidden_proto (cairo_gl_surface_create);
+
#endif /* CAIRO_GL_PRIVATE_H */
diff --git a/src/cairo-gl-surface.c b/src/cairo-gl-surface.c
index 1668fbc87..a8d02fe39 100644
--- a/src/cairo-gl-surface.c
+++ b/src/cairo-gl-surface.c
@@ -41,7 +41,6 @@
slim_hidden_proto (cairo_gl_context_reference);
slim_hidden_proto (cairo_gl_context_destroy);
-slim_hidden_proto (cairo_gl_surface_create);
#define ARRAY_SIZE(array) (sizeof (array) / sizeof (array[0]))