diff options
author | Jonathon Jongsma <jjongsma@gnome.org> | 2006-07-04 18:50:02 +0000 |
---|---|---|
committer | Jonathon Jongsma <jjongsma@gnome.org> | 2006-07-04 18:50:02 +0000 |
commit | e975124de994758b2ded45378d0e3133e7249c0b (patch) | |
tree | 508a9bec4b8cdf2407a205fcb5c6d1180b6891e4 | |
parent | 30213c059a7a8d926aeec43b0405f234cc42dc16 (diff) |
2006-07-04 Jonathon Jongsma <jonathon.jongsma@gmail.com>
* cairomm/surface.h: Remove comments stating that PDF, PS, and SVG are
experimental surfaces. As of 1.2.0, these three surfaces are officially
supported by the cairo library.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | cairomm/surface.h | 20 |
2 files changed, 12 insertions, 14 deletions
@@ -1,5 +1,11 @@ 2006-07-04 Jonathon Jongsma <jonathon.jongsma@gmail.com> + * cairomm/surface.h: Remove comments stating that PDF, PS, and SVG are + experimental surfaces. As of 1.2.0, these three surfaces are officially + supported by the cairo library. + +2006-07-04 Jonathon Jongsma <jonathon.jongsma@gmail.com> + * cairomm/xlib_surface.h: add a bit more documentation for the new XlibSurface API diff --git a/cairomm/surface.h b/cairomm/surface.h index a14e5fa..8e08bee 100644 --- a/cairomm/surface.h +++ b/cairomm/surface.h @@ -29,7 +29,6 @@ //See xlib_surface.h for XlibSurface. //See win32_surface.h for Win32Surface. -// Experimental surfaces #ifdef CAIRO_HAS_PDF_SURFACE #include <cairo-pdf.h> #endif // CAIRO_HAS_PDF_SURFACE @@ -39,6 +38,8 @@ #ifdef CAIRO_HAS_SVG_SURFACE #include <cairo-svg.h> #endif // CAIRO_HAS_SVG_SURFACE + +// Experimental surfaces #ifdef CAIRO_HAS_GLITZ_SURFACE #include <cairo-glitz.h> #endif // CAIRO_HAS_GLITZ_SURFACE @@ -354,10 +355,6 @@ public: }; -/******************************************************************************* - * THE FOLLOWING SURFACE TYPES ARE EXPERIMENTAL AND NOT FULLY SUPPORTED - ******************************************************************************/ - #ifdef CAIRO_HAS_PDF_SURFACE /** A PdfSurface provides a way to render PDF documents from cairo. This @@ -366,9 +363,6 @@ public: * * \note For this Surface to be available, cairo must have been compiled with * PDF support - * - * \warning This is an experimental surface. It is not yet marked as a fully - * supported surface by the cairo library */ class PdfSurface : public Surface { @@ -430,9 +424,6 @@ public: * * \note For this Surface to be available, cairo must have been compiled with * PostScript support - * - * \warning This is an experimental surface. It is not yet marked as a fully - * supported surface by the cairo library */ class PsSurface : public Surface { @@ -527,9 +518,6 @@ typedef enum * * \note For this Surface to be available, cairo must have been compiled with * SVG support - * - * \warning This is an experimental surface. It is not yet marked as a fully - * supported surface by the cairo library */ class SvgSurface : public Surface { @@ -597,6 +585,10 @@ public: #endif // CAIRO_HAS_SVG_SURFACE +/******************************************************************************* + * THE FOLLOWING SURFACE TYPES ARE EXPERIMENTAL AND NOT FULLY SUPPORTED + ******************************************************************************/ + #ifdef CAIRO_HAS_GLITZ_SURFACE /** A GlitzSurface provides a way to render to the X Window System using Glitz. |