diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 01:17:54 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 01:17:54 +0000 |
commit | fbfdd2bd25d1eb872e57c69756c91d2ebde4a0d6 (patch) | |
tree | 5087610eb59563161069defb784233bbc8f4d859 /canvas/source/tools | |
parent | 58ea26275bdaab1127935f7f749eac879db2829f (diff) |
INTEGRATION: CWS warnings01 (1.1.2); FILE ADDED
2006/02/22 22:22:11 thb 1.1.2.1: #i55991# To wrap the agg headers
Diffstat (limited to 'canvas/source/tools')
-rw-r--r-- | canvas/source/tools/image_sysprereq.h | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/canvas/source/tools/image_sysprereq.h b/canvas/source/tools/image_sysprereq.h new file mode 100644 index 000000000000..f1617f4441df --- /dev/null +++ b/canvas/source/tools/image_sysprereq.h @@ -0,0 +1,95 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: image_sysprereq.h,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: hr $ $Date: 2006-06-20 02:17:54 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ + +#if defined __GNUC__ +#pragma GCC system_header +#elif defined __SUNPRO_CC +#pragma disable_warn +#elif defined _MSC_VER +#pragma warning(push, 1) +#endif + +#include <agg2/agg_rendering_buffer.h> + +#ifdef CANVAS_IMAGE_CXX + +////////////////////////////////////////////////////////////////////////////////// +// includes from antigrain [i would love to write this stuff by myself] +////////////////////////////////////////////////////////////////////////////////// + +#include <agg2/agg_rendering_buffer.h> +#include <agg2/agg_pixfmt_rgb.h> +#include <agg2/agg_pixfmt_rgba.h> +#include <agg2/agg_renderer_base.h> +#include <agg2/agg_color_rgba.h> +#include <agg2/agg_rasterizer_outline_aa.h> +#include <agg2/agg_rasterizer_scanline_aa.h> +#include <agg2/agg_scanline_p.h> +#include <agg2/agg_scanline_u.h> +#include <agg2/agg_renderer_scanline.h> +#include <agg2/agg_renderer_outline_aa.h> +#include <agg2/agg_renderer_primitives.h> +#include <agg2/agg_path_storage.h> +#include <agg2/agg_span_pattern.h> +#include <agg2/agg_span_pattern_rgba.h> +#include <agg2/agg_span_pattern_resample_rgb.h> +#include <agg2/agg_span_pattern_resample_rgba.h> +#include <agg2/agg_span_interpolator_linear.h> +#include <agg2/agg_span_gradient.h> +#include <agg2/agg_span_image_resample_rgb.h> +#include <agg2/agg_span_image_resample_rgba.h> +#include <agg2/agg_image_filters.h> +#include <agg2/agg_dda_line.h> +#include <agg2/agg_scanline_storage_aa.h> +#include <agg2/agg_scanline_storage_bin.h> +#include <agg2/agg_scanline_bin.h> +#include <agg2/agg_path_storage_integer.h> +#include <agg2/agg_conv_contour.h> +#include <agg2/agg_conv_curve.h> +#include <agg2/agg_conv_stroke.h> +#include <agg2/agg_conv_transform.h> +#include <agg2/agg_trans_affine.h> +#include <agg2/agg_font_cache_manager.h> +#include <agg2/agg_bitset_iterator.h> +#include <agg2/agg_path_storage.h> + +#endif // CANVAS_IMAGE_CXX + +#if defined __SUNPRO_CC +#pragma enable_warn +#elif defined _MSC_VER +#pragma warning(pop) +#endif + |