summaryrefslogtreecommitdiff
path: root/cogl/cogl-atlas.h
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2010-02-03 19:54:12 +0000
committerNeil Roberts <neil@linux.intel.com>2010-02-03 23:09:26 +0000
commitef9781d7dadb7431c5420764d9a33b9bddcf1a5a (patch)
tree7f5f1e5b5bac53024d9bb02318dbe6279e7ad271 /cogl/cogl-atlas.h
parentefcbd20320712de9785d8361f5483cecc96cf0df (diff)
downloadcogl-ef9781d7dadb7431c5420764d9a33b9bddcf1a5a.tar.gz
cogl-atlas: Make the cogl_atlas_* API internal
This just adds an underscore to every entry point for the CoglAtlas API so that it's not exported.
Diffstat (limited to 'cogl/cogl-atlas.h')
-rw-r--r--cogl/cogl-atlas.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/cogl/cogl-atlas.h b/cogl/cogl-atlas.h
index 37ccc898..00d4a086 100644
--- a/cogl/cogl-atlas.h
+++ b/cogl/cogl-atlas.h
@@ -40,37 +40,37 @@ struct _CoglAtlasRectangle
};
CoglAtlas *
-cogl_atlas_new (guint width, guint height,
- GDestroyNotify value_destroy_func);
+_cogl_atlas_new (guint width, guint height,
+ GDestroyNotify value_destroy_func);
gboolean
-cogl_atlas_add_rectangle (CoglAtlas *atlas,
- guint width, guint height,
- gpointer data,
- CoglAtlasRectangle *rectangle);
+_cogl_atlas_add_rectangle (CoglAtlas *atlas,
+ guint width, guint height,
+ gpointer data,
+ CoglAtlasRectangle *rectangle);
void
-cogl_atlas_remove_rectangle (CoglAtlas *atlas,
- const CoglAtlasRectangle *rectangle);
+_cogl_atlas_remove_rectangle (CoglAtlas *atlas,
+ const CoglAtlasRectangle *rectangle);
guint
-cogl_atlas_get_width (CoglAtlas *atlas);
+_cogl_atlas_get_width (CoglAtlas *atlas);
guint
-cogl_atlas_get_height (CoglAtlas *atlas);
+_cogl_atlas_get_height (CoglAtlas *atlas);
guint
-cogl_atlas_get_remaining_space (CoglAtlas *atlas);
+_cogl_atlas_get_remaining_space (CoglAtlas *atlas);
guint
-cogl_atlas_get_n_rectangles (CoglAtlas *atlas);
+_cogl_atlas_get_n_rectangles (CoglAtlas *atlas);
void
-cogl_atlas_foreach (CoglAtlas *atlas,
- CoglAtlasCallback callback,
- gpointer data);
+_cogl_atlas_foreach (CoglAtlas *atlas,
+ CoglAtlasCallback callback,
+ gpointer data);
void
-cogl_atlas_free (CoglAtlas *atlas);
+_cogl_atlas_free (CoglAtlas *atlas);
#endif /* __COGL_ATLAS_H */