diff options
author | Robert Bragg <robert@linux.intel.com> | 2012-09-01 01:17:20 +0100 |
---|---|---|
committer | Robert Bragg <robert@linux.intel.com> | 2013-01-18 10:53:29 +0000 |
commit | 13f228fe6954f2d3b8b4cca05ba54952b0d6cdbc (patch) | |
tree | 88baa9ce1b5edd1aeaa79057ccefb22cabdbcd7d /cogl/cogl-texture-rectangle.h | |
parent | ce5d06afe1d4f890fb11b885cfeabf253c466a51 (diff) | |
download | cogl-13f228fe6954f2d3b8b4cca05ba54952b0d6cdbc.tar.gz |
Remove all remaining _EXP suffix defines
To delimit which symbols were considered experimental we used to use
some preprocessor defines to gives experimental symbols an _EXP suffix
so that anyone monitoring the ABI for changes would easily be able to
discount changes made to clearly experimental functions.
These days we simply rely on the gtk-doc "Stability: unstable"
annotation to serve this purpose because changing the actual symbol name
made it slightly more awkward to debug Cogl using GDB and was an extra
mechanical step we decided we could do without.
This patch removes the last remaining _EXP suffix defines in Cogl
(cherry picked from commit 5a1c4a979e00accd492097cfb8f6a8d0fd8331bc)
Diffstat (limited to 'cogl/cogl-texture-rectangle.h')
-rw-r--r-- | cogl/cogl-texture-rectangle.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cogl/cogl-texture-rectangle.h b/cogl/cogl-texture-rectangle.h index a40c1842..1a963227 100644 --- a/cogl/cogl-texture-rectangle.h +++ b/cogl/cogl-texture-rectangle.h @@ -63,7 +63,6 @@ G_BEGIN_DECLS typedef struct _CoglTextureRectangle CoglTextureRectangle; #define COGL_TEXTURE_RECTANGLE(X) ((CoglTextureRectangle *)X) -#define cogl_is_texture_rectangle cogl_is_texture_rectangle_EXP /** * cogl_is_texture_rectangle: * @object: A #CoglObject @@ -77,8 +76,6 @@ typedef struct _CoglTextureRectangle CoglTextureRectangle; CoglBool cogl_is_texture_rectangle (void *object); -#define cogl_texture_rectangle_new_with_size \ - cogl_texture_rectangle_new_with_size_EXP /** * cogl_texture_rectangle_new_with_size: * @context: A #CoglContext pointer |