├── agg-2.4 ├── AUTHORS ├── CMakeLists.txt ├── ChangeLog ├── Makefile ├── Makefile.AmigaOS ├── Makefile.am ├── Makefile.in.BeOS ├── Makefile.in.CYGWIN_NT-5.0 ├── Makefile.in.CYGWIN_NT-5.1 ├── Makefile.in.Darwin ├── Makefile.in.Darwin.SDL ├── Makefile.in.IRIX64 ├── Makefile.in.Linux ├── Makefile.in.Linux.SDL ├── Makefile.in.MINGW32_NT-5.0 ├── Makefile.in.MINGW32_NT-5.1 ├── Makefile.in.SunOS ├── NEWS ├── README ├── agg2d │ ├── agg2d.cpp │ └── agg2d.h ├── autogen.sh ├── bin │ ├── AggConfig.cmake.in │ ├── AggConfigOutBuild.cmake.in │ ├── FindAgg.cmake │ ├── FindEXPAT.cmake │ ├── FindFreetype.cmake │ └── UseAgg.cmake.in ├── cmake_install.html ├── configure.in ├── copying ├── distclean ├── doc │ └── AggCP-Gradients1_readme.txt ├── examples │ ├── BeOS │ │ ├── Makefile │ │ └── readme.txt │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── X11 │ │ ├── Makefile │ │ └── readme.txt │ ├── aa_demo.cpp │ ├── aa_test.cpp │ ├── agg2d_demo.cpp │ ├── alpha_gradient.cpp │ ├── alpha_mask.cpp │ ├── alpha_mask2.cpp │ ├── alpha_mask3.cpp │ ├── art │ │ ├── agg.bmp │ │ ├── agg.ppm │ │ ├── compositing.bmp │ │ ├── compositing.ppm │ │ ├── line_patterns.bmp.zip │ │ ├── shapes.txt │ │ ├── spheres.bmp │ │ ├── spheres.ppm │ │ └── timesi.zip │ ├── bezier_div.cpp │ ├── blend_color.cpp │ ├── blur.cpp │ ├── bspline.cpp │ ├── circles.cpp │ ├── component_rendering.cpp │ ├── compositing.cpp │ ├── compositing2.cpp │ ├── conv_contour.cpp │ ├── conv_dash_marker.cpp │ ├── conv_stroke.cpp │ ├── distortions.cpp │ ├── flash_rasterizer.cpp │ ├── flash_rasterizer2.cpp │ ├── freetype_test.cpp │ ├── gamma_correction.cpp │ ├── gamma_ctrl.cpp │ ├── gamma_tuner.cpp │ ├── gouraud.cpp │ ├── gouraud_mesh.cpp │ ├── gpc_test.cpp │ ├── gradient_focal.cpp │ ├── gradients.cpp │ ├── gradients_contour.cpp │ ├── graph_test.cpp │ ├── idea.cpp │ ├── image1.cpp │ ├── image_alpha.cpp │ ├── image_filters.cpp │ ├── image_filters2.cpp │ ├── image_fltr_graph.cpp │ ├── image_perspective.cpp │ ├── image_resample.cpp │ ├── image_transforms.cpp │ ├── interactive_polygon.cpp │ ├── interactive_polygon.h │ ├── line_patterns.cpp │ ├── line_patterns_clip.cpp │ ├── line_thickness.cpp │ ├── lion.cpp │ ├── lion_lens.cpp │ ├── lion_outline.cpp │ ├── macosx_carbon │ │ ├── Makefile │ │ └── readme.txt │ ├── macosx_sdl │ │ ├── Makefile │ │ └── readme.txt │ ├── make_arrows.cpp │ ├── make_gb_poly.cpp │ ├── mol_view.cpp │ ├── multi_clip.cpp │ ├── parse_lion.cpp │ ├── pattern_fill.cpp │ ├── pattern_perspective.cpp │ ├── pattern_resample.cpp │ ├── perspective.cpp │ ├── pixel_formats.h │ ├── polymorphic_renderer.cpp │ ├── raster_text.cpp │ ├── rasterizer_compound.cpp │ ├── rasterizers.cpp │ ├── rasterizers2.cpp │ ├── rounded_rect.cpp │ ├── scanline_boolean.cpp │ ├── scanline_boolean2.cpp │ ├── simple_blur.cpp │ ├── svg_viewer │ │ ├── agg_svg_exception.h │ │ ├── agg_svg_parser.cpp │ │ ├── agg_svg_parser.h │ │ ├── agg_svg_path_renderer.cpp │ │ ├── agg_svg_path_renderer.h │ │ ├── agg_svg_path_tokenizer.cpp │ │ ├── agg_svg_path_tokenizer.h │ │ └── svg_test.cpp │ ├── trans_curve1.cpp │ ├── trans_curve1_ft.cpp │ ├── trans_curve2.cpp │ ├── trans_curve2_ft.cpp │ ├── trans_polar.cpp │ ├── truetype_test.cpp │ ├── win32_api │ │ ├── Makefile │ │ ├── aa_demo │ │ │ ├── Makefile │ │ │ ├── aa_demo.dsp │ │ │ ├── aa_demo.dsw │ │ │ └── aa_demo.vcxproj │ │ ├── aa_test │ │ │ ├── Makefile │ │ │ ├── aa_test.dsp │ │ │ ├── aa_test.dsw │ │ │ └── aa_test.vcxproj │ │ ├── agg.props │ │ ├── agg2d_demo │ │ │ ├── Makefile │ │ │ └── agg2d_demo.vcxproj │ │ ├── alpha_gradient │ │ │ ├── Makefile │ │ │ ├── alpha_gradient.dsp │ │ │ ├── alpha_gradient.dsw │ │ │ └── alpha_gradient.vcxproj │ │ ├── alpha_mask │ │ │ ├── Makefile │ │ │ ├── alpha_mask.dsp │ │ │ ├── alpha_mask.dsw │ │ │ └── alpha_mask.vcxproj │ │ ├── alpha_mask2 │ │ │ ├── Makefile │ │ │ ├── alpha_mask2.dsp │ │ │ ├── alpha_mask2.dsw │ │ │ └── alpha_mask2.vcxproj │ │ ├── alpha_mask3 │ │ │ ├── Makefile │ │ │ ├── alpha_mask3.dsp │ │ │ ├── alpha_mask3.dsw │ │ │ └── alpha_mask3.vcxproj │ │ ├── bezier_div │ │ │ ├── Makefile │ │ │ ├── bezier_div.dsp │ │ │ ├── bezier_div.dsw │ │ │ └── bezier_div.vcxproj │ │ ├── blend_color │ │ │ ├── Makefile │ │ │ ├── blend_color.dsp │ │ │ ├── blend_color.dsw │ │ │ └── blend_color.vcxproj │ │ ├── blur │ │ │ ├── Makefile │ │ │ ├── blur.dsp │ │ │ ├── blur.dsw │ │ │ └── blur.vcxproj │ │ ├── bspline │ │ │ ├── Makefile │ │ │ ├── bspline.dsp │ │ │ ├── bspline.dsw │ │ │ └── bspline.vcxproj │ │ ├── circles │ │ │ ├── Makefile │ │ │ ├── circles.dsp │ │ │ ├── circles.dsw │ │ │ └── circles.vcxproj │ │ ├── component_rendering │ │ │ ├── Makefile │ │ │ ├── component_rendering.dsp │ │ │ ├── component_rendering.dsw │ │ │ └── component_rendering.vcxproj │ │ ├── compositing │ │ │ ├── Makefile │ │ │ ├── compositing.dsp │ │ │ ├── compositing.dsw │ │ │ ├── compositing.vcxproj │ │ │ └── readme │ │ ├── compositing2 │ │ │ ├── Makefile │ │ │ ├── compositing2.dsp │ │ │ ├── compositing2.dsw │ │ │ └── compositing2.vcxproj │ │ ├── conv_contour │ │ │ ├── Makefile │ │ │ ├── conv_contour.dsp │ │ │ ├── conv_contour.dsw │ │ │ └── conv_contour.vcxproj │ │ ├── conv_dash_marker │ │ │ ├── Makefile │ │ │ ├── conv_dash_marker.dsp │ │ │ ├── conv_dash_marker.dsw │ │ │ └── conv_dash_marker.vcxproj │ │ ├── conv_stroke │ │ │ ├── Makefile │ │ │ ├── conv_stroke.dsp │ │ │ ├── conv_stroke.dsw │ │ │ └── conv_stroke.vcxproj │ │ ├── distortions │ │ │ ├── Makefile │ │ │ ├── distortions.dsp │ │ │ ├── distortions.dsw │ │ │ ├── distortions.vcxproj │ │ │ └── readme │ │ ├── examples.dsw │ │ ├── examples.sln │ │ ├── flash_rasterizer │ │ │ ├── Makefile │ │ │ ├── flash_rasterizer.dsp │ │ │ ├── flash_rasterizer.dsw │ │ │ └── flash_rasterizer.vcxproj │ │ ├── flash_rasterizer2 │ │ │ ├── Makefile │ │ │ ├── flash_rasterizer2.dsp │ │ │ ├── flash_rasterizer2.dsw │ │ │ └── flash_rasterizer2.vcxproj │ │ ├── freetype_test │ │ │ ├── Makefile │ │ │ ├── freetype_test.dsp │ │ │ ├── freetype_test.dsw │ │ │ ├── freetype_test.vcxproj │ │ │ └── readme │ │ ├── gamma_correction │ │ │ ├── Makefile │ │ │ ├── gamma_correction.dsp │ │ │ ├── gamma_correction.dsw │ │ │ └── gamma_correction.vcxproj │ │ ├── gamma_ctrl │ │ │ ├── Makefile │ │ │ ├── gamma_ctrl.dsp │ │ │ ├── gamma_ctrl.dsw │ │ │ └── gamma_ctrl.vcxproj │ │ ├── gamma_tuner │ │ │ ├── Makefile │ │ │ ├── gamma_tuner.dsp │ │ │ ├── gamma_tuner.dsw │ │ │ └── gamma_tuner.vcxproj │ │ ├── gouraud │ │ │ ├── Makefile │ │ │ ├── gouraud.dsp │ │ │ ├── gouraud.dsw │ │ │ └── gouraud.vcxproj │ │ ├── gouraud_mesh │ │ │ ├── Makefile │ │ │ ├── gouraud_mesh.dsp │ │ │ ├── gouraud_mesh.dsw │ │ │ └── gouraud_mesh.vcxproj │ │ ├── gpc_test │ │ │ ├── Makefile │ │ │ ├── gpc_test.dsp │ │ │ ├── gpc_test.dsw │ │ │ └── gpc_test.vcxproj │ │ ├── gradient_focal │ │ │ ├── Makefile │ │ │ ├── gradient_focal.dsp │ │ │ ├── gradient_focal.dsw │ │ │ └── gradient_focal.vcxproj │ │ ├── gradients │ │ │ ├── Makefile │ │ │ ├── gradients.dsp │ │ │ ├── gradients.dsw │ │ │ ├── gradients.vcxproj │ │ │ └── settings.dat │ │ ├── graph_test │ │ │ ├── Makefile │ │ │ ├── graph_test.dsp │ │ │ ├── graph_test.dsw │ │ │ └── graph_test.vcxproj │ │ ├── idea │ │ │ ├── Makefile │ │ │ ├── idea.dsp │ │ │ ├── idea.dsw │ │ │ └── idea.vcxproj │ │ ├── image1 │ │ │ ├── Makefile │ │ │ ├── image1.dsp │ │ │ ├── image1.dsw │ │ │ ├── image1.vcxproj │ │ │ └── readme │ │ ├── image_alpha │ │ │ ├── Makefile │ │ │ ├── image_alpha.dsp │ │ │ ├── image_alpha.dsw │ │ │ ├── image_alpha.vcxproj │ │ │ └── readme │ │ ├── image_filters │ │ │ ├── Makefile │ │ │ ├── image_filters.dsp │ │ │ ├── image_filters.dsw │ │ │ ├── image_filters.vcxproj │ │ │ └── readme │ │ ├── image_filters2 │ │ │ ├── Makefile │ │ │ ├── image_filters2.dsp │ │ │ ├── image_filters2.dsw │ │ │ ├── image_filters2.vcxproj │ │ │ └── readme │ │ ├── image_fltr_graph │ │ │ ├── Makefile │ │ │ ├── image_fltr_graph.dsp │ │ │ ├── image_fltr_graph.dsw │ │ │ └── image_fltr_graph.vcxproj │ │ ├── image_perspective │ │ │ ├── Makefile │ │ │ ├── image_perspective.dsp │ │ │ ├── image_perspective.dsw │ │ │ ├── image_perspective.vcxproj │ │ │ └── readme │ │ ├── image_resample │ │ │ ├── Makefile │ │ │ ├── image_resample.dsp │ │ │ ├── image_resample.dsw │ │ │ ├── image_resample.vcxproj │ │ │ └── readme │ │ ├── image_transforms │ │ │ ├── Makefile │ │ │ ├── image_transforms.dsp │ │ │ ├── image_transforms.dsw │ │ │ ├── image_transforms.vcxproj │ │ │ └── readme! │ │ ├── line_patterns │ │ │ ├── Makefile │ │ │ ├── line_patterns.dsp │ │ │ ├── line_patterns.dsw │ │ │ └── line_patterns.vcxproj │ │ ├── line_patterns_clip │ │ │ ├── Makefile │ │ │ ├── line_patterns_clip.dsp │ │ │ ├── line_patterns_clip.dsw │ │ │ └── line_patterns_clip.vcxproj │ │ ├── line_thickness │ │ │ └── line_thickness.vcxproj │ │ ├── lion │ │ │ ├── Makefile │ │ │ ├── lion.dsp │ │ │ ├── lion.dsw │ │ │ └── lion.vcxproj │ │ ├── lion_lens │ │ │ ├── Makefile │ │ │ ├── lion_lens.dsp │ │ │ ├── lion_lens.dsw │ │ │ └── lion_lens.vcxproj │ │ ├── lion_outline │ │ │ ├── Makefile │ │ │ ├── lion_outline.dsp │ │ │ ├── lion_outline.dsw │ │ │ └── lion_outline.vcxproj │ │ ├── mol_view │ │ │ ├── Makefile │ │ │ ├── mol_view.dsp │ │ │ ├── mol_view.dsw │ │ │ ├── mol_view.vcxproj │ │ │ └── readme │ │ ├── multi_clip │ │ │ ├── Makefile │ │ │ ├── multi_clip.dsp │ │ │ ├── multi_clip.dsw │ │ │ └── multi_clip.vcxproj │ │ ├── pattern_fill │ │ │ ├── Makefile │ │ │ ├── pattern_fill.dsp │ │ │ ├── pattern_fill.dsw │ │ │ └── pattern_fill.vcxproj │ │ ├── pattern_perspective │ │ │ ├── pattern_perspective.dsp │ │ │ ├── pattern_perspective.dsw │ │ │ └── pattern_perspective.vcxproj │ │ ├── pattern_resample │ │ │ ├── Makefile │ │ │ ├── pattern_resample.dsp │ │ │ ├── pattern_resample.dsw │ │ │ └── pattern_resample.vcxproj │ │ ├── perspective │ │ │ ├── Makefile │ │ │ ├── perspective.dsp │ │ │ ├── perspective.dsw │ │ │ └── perspective.vcxproj │ │ ├── polymorphic_renderer │ │ │ ├── Makefile │ │ │ ├── polymorphic_renderer.dsp │ │ │ ├── polymorphic_renderer.dsw │ │ │ └── polymorphic_renderer.vcxproj │ │ ├── pure_api │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── pure_api.cpp │ │ │ ├── pure_api.dsp │ │ │ ├── pure_api.dsw │ │ │ ├── pure_api.h │ │ │ ├── pure_api.ico │ │ │ ├── pure_api.rc │ │ │ ├── pure_api.vcxproj │ │ │ ├── resource.h │ │ │ └── small.ico │ │ ├── raster_text │ │ │ ├── Makefile │ │ │ ├── raster_text.dsp │ │ │ ├── raster_text.dsw │ │ │ └── raster_text.vcxproj │ │ ├── rasterizer_compound │ │ │ ├── Makefile │ │ │ ├── rasterizer_compound.dsp │ │ │ ├── rasterizer_compound.dsw │ │ │ └── rasterizer_compound.vcxproj │ │ ├── rasterizers │ │ │ ├── Makefile │ │ │ ├── rasterizers.dsp │ │ │ ├── rasterizers.dsw │ │ │ └── rasterizers.vcxproj │ │ ├── rasterizers2 │ │ │ ├── Makefile │ │ │ ├── rasterizers2.dsp │ │ │ ├── rasterizers2.dsw │ │ │ └── rasterizers2.vcxproj │ │ ├── rounded_rect │ │ │ ├── Makefile │ │ │ ├── rounded_rect.dsp │ │ │ ├── rounded_rect.dsw │ │ │ └── rounded_rect.vcxproj │ │ ├── scanline_boolean │ │ │ ├── Makefile │ │ │ ├── scanline_boolean.dsp │ │ │ ├── scanline_boolean.dsw │ │ │ └── scanline_boolean.vcxproj │ │ ├── scanline_boolean2 │ │ │ ├── Makefile │ │ │ ├── scanline_boolean2.dsp │ │ │ ├── scanline_boolean2.dsw │ │ │ └── scanline_boolean2.vcxproj │ │ ├── simple_blur │ │ │ ├── Makefile │ │ │ ├── simple_blur.dsp │ │ │ ├── simple_blur.dsw │ │ │ └── simple_blur.vcxproj │ │ ├── svg_test │ │ │ ├── svg_test.dsp │ │ │ ├── svg_test.dsw │ │ │ └── svg_test.vcxproj │ │ ├── trans_curve1 │ │ │ ├── Makefile │ │ │ ├── trans_curve1.dsp │ │ │ ├── trans_curve1.dsw │ │ │ └── trans_curve1.vcxproj │ │ ├── trans_curve2 │ │ │ ├── Makefile │ │ │ ├── trans_curve2.dsp │ │ │ ├── trans_curve2.dsw │ │ │ └── trans_curve2.vcxproj │ │ ├── trans_polar │ │ │ ├── Makefile │ │ │ ├── trans_polar.dsp │ │ │ ├── trans_polar.dsw │ │ │ └── trans_polar.vcxproj │ │ └── truetype_test │ │ │ ├── Makefile │ │ │ ├── truetype_test.dsp │ │ │ ├── truetype_test.dsw │ │ │ └── truetype_test.vcxproj │ └── win32_api_dmc │ │ ├── Makefile │ │ └── readme ├── font_freetype │ ├── Makefile.am │ ├── agg_font_freetype.cpp │ ├── agg_font_freetype.h │ ├── agg_font_freetype2.cpp │ └── agg_font_freetype2.h ├── font_win32_tt │ ├── Makefile.am │ ├── agg_font_win32_tt.cpp │ └── agg_font_win32_tt.h ├── gpc │ ├── Makefile.am │ ├── VERSIONS.TXT │ ├── copying.txt │ ├── gpc.c │ └── gpc.h ├── include │ ├── Makefile.am │ ├── agg_alpha_mask_u8.h │ ├── agg_arc.h │ ├── agg_array.h │ ├── agg_arrowhead.h │ ├── agg_basics.h │ ├── agg_bezier_arc.h │ ├── agg_bitset_iterator.h │ ├── agg_blur.h │ ├── agg_bounding_rect.h │ ├── agg_bspline.h │ ├── agg_clip_liang_barsky.h │ ├── agg_color_gray.h │ ├── agg_color_rgba.h │ ├── agg_config.h │ ├── agg_conv_adaptor_vcgen.h │ ├── agg_conv_adaptor_vpgen.h │ ├── agg_conv_bspline.h │ ├── agg_conv_clip_polygon.h │ ├── agg_conv_clip_polyline.h │ ├── agg_conv_close_polygon.h │ ├── agg_conv_concat.h │ ├── agg_conv_contour.h │ ├── agg_conv_curve.h │ ├── agg_conv_dash.h │ ├── agg_conv_gpc.h │ ├── agg_conv_marker.h │ ├── agg_conv_marker_adaptor.h │ ├── agg_conv_segmentator.h │ ├── agg_conv_shorten_path.h │ ├── agg_conv_smooth_poly1.h │ ├── agg_conv_stroke.h │ ├── agg_conv_transform.h │ ├── agg_conv_unclose_polygon.h │ ├── agg_curves.h │ ├── agg_dda_line.h │ ├── agg_ellipse.h │ ├── agg_ellipse_bresenham.h │ ├── agg_embedded_raster_fonts.h │ ├── agg_font_cache_manager.h │ ├── agg_font_cache_manager2.h │ ├── agg_gamma_functions.h │ ├── agg_gamma_lut.h │ ├── agg_glyph_raster_bin.h │ ├── agg_gradient_lut.h │ ├── agg_gsv_text.h │ ├── agg_image_accessors.h │ ├── agg_image_filters.h │ ├── agg_line_aa_basics.h │ ├── agg_math.h │ ├── agg_math_stroke.h │ ├── agg_path_length.h │ ├── agg_path_storage.h │ ├── agg_path_storage_integer.h │ ├── agg_pattern_filters_rgba.h │ ├── agg_pixfmt_amask_adaptor.h │ ├── agg_pixfmt_base.h │ ├── agg_pixfmt_gray.h │ ├── agg_pixfmt_rgb.h │ ├── agg_pixfmt_rgb_packed.h │ ├── agg_pixfmt_rgba.h │ ├── agg_pixfmt_transposer.h │ ├── agg_rasterizer_cells_aa.h │ ├── agg_rasterizer_compound_aa.h │ ├── agg_rasterizer_outline.h │ ├── agg_rasterizer_outline_aa.h │ ├── agg_rasterizer_scanline_aa.h │ ├── agg_rasterizer_scanline_aa_nogamma.h │ ├── agg_rasterizer_sl_clip.h │ ├── agg_renderer_base.h │ ├── agg_renderer_markers.h │ ├── agg_renderer_mclip.h │ ├── agg_renderer_outline_aa.h │ ├── agg_renderer_outline_image.h │ ├── agg_renderer_primitives.h │ ├── agg_renderer_raster_text.h │ ├── agg_renderer_scanline.h │ ├── agg_rendering_buffer.h │ ├── agg_rendering_buffer_dynarow.h │ ├── agg_rounded_rect.h │ ├── agg_scanline_bin.h │ ├── agg_scanline_boolean_algebra.h │ ├── agg_scanline_p.h │ ├── agg_scanline_storage_aa.h │ ├── agg_scanline_storage_bin.h │ ├── agg_scanline_u.h │ ├── agg_shorten_path.h │ ├── agg_simul_eq.h │ ├── agg_span_allocator.h │ ├── agg_span_converter.h │ ├── agg_span_gouraud.h │ ├── agg_span_gouraud_gray.h │ ├── agg_span_gouraud_rgba.h │ ├── agg_span_gradient.h │ ├── agg_span_gradient_alpha.h │ ├── agg_span_gradient_contour.h │ ├── agg_span_gradient_image.h │ ├── agg_span_image_filter.h │ ├── agg_span_image_filter_gray.h │ ├── agg_span_image_filter_rgb.h │ ├── agg_span_image_filter_rgba.h │ ├── agg_span_interpolator_adaptor.h │ ├── agg_span_interpolator_linear.h │ ├── agg_span_interpolator_persp.h │ ├── agg_span_interpolator_trans.h │ ├── agg_span_pattern_gray.h │ ├── agg_span_pattern_rgb.h │ ├── agg_span_pattern_rgba.h │ ├── agg_span_solid.h │ ├── agg_span_subdiv_adaptor.h │ ├── agg_trans_affine.h │ ├── agg_trans_bilinear.h │ ├── agg_trans_double_path.h │ ├── agg_trans_perspective.h │ ├── agg_trans_single_path.h │ ├── agg_trans_viewport.h │ ├── agg_trans_warp_magnifier.h │ ├── agg_vcgen_bspline.h │ ├── agg_vcgen_contour.h │ ├── agg_vcgen_dash.h │ ├── agg_vcgen_markers_term.h │ ├── agg_vcgen_smooth_poly1.h │ ├── agg_vcgen_stroke.h │ ├── agg_vcgen_vertex_sequence.h │ ├── agg_vertex_sequence.h │ ├── agg_vpgen_clip_polygon.h │ ├── agg_vpgen_clip_polyline.h │ ├── agg_vpgen_segmentator.h │ ├── ctrl │ │ ├── Makefile.am │ │ ├── agg_bezier_ctrl.h │ │ ├── agg_cbox_ctrl.h │ │ ├── agg_ctrl.h │ │ ├── agg_gamma_ctrl.h │ │ ├── agg_gamma_spline.h │ │ ├── agg_polygon_ctrl.h │ │ ├── agg_rbox_ctrl.h │ │ ├── agg_scale_ctrl.h │ │ ├── agg_slider_ctrl.h │ │ └── agg_spline_ctrl.h │ ├── platform │ │ ├── Makefile.am │ │ ├── agg_platform_support.h │ │ ├── mac │ │ │ └── agg_mac_pmap.h │ │ └── win32 │ │ │ └── agg_win32_bmp.h │ └── util │ │ ├── Makefile.am │ │ ├── agg_color_conv.h │ │ ├── agg_color_conv_rgb16.h │ │ └── agg_color_conv_rgb8.h ├── install ├── libagg.m4 ├── libagg.pc.in ├── myapp │ ├── CMakeLists.txt │ ├── CMakeLists.txt.in │ ├── agg2d_demo.cpp │ ├── my_demo.cpp │ └── myproject.cmake └── src │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── Makefile │ ├── Makefile.am │ ├── agg_arc.cpp │ ├── agg_arrowhead.cpp │ ├── agg_bezier_arc.cpp │ ├── agg_bspline.cpp │ ├── agg_color_rgba.cpp │ ├── agg_curves.cpp │ ├── agg_embedded_raster_fonts.cpp │ ├── agg_gsv_text.cpp │ ├── agg_image_filters.cpp │ ├── agg_line_aa_basics.cpp │ ├── agg_line_profile_aa.cpp │ ├── agg_rounded_rect.cpp │ ├── agg_sqrt_tables.cpp │ ├── agg_trans_affine.cpp │ ├── agg_trans_double_path.cpp │ ├── agg_trans_single_path.cpp │ ├── agg_trans_warp_magnifier.cpp │ ├── agg_vcgen_bspline.cpp │ ├── agg_vcgen_contour.cpp │ ├── agg_vcgen_dash.cpp │ ├── agg_vcgen_markers_term.cpp │ ├── agg_vcgen_smooth_poly1.cpp │ ├── agg_vcgen_stroke.cpp │ ├── agg_vpgen_clip_polygon.cpp │ ├── agg_vpgen_clip_polyline.cpp │ ├── agg_vpgen_segmentator.cpp │ ├── authors │ ├── autogen.sh │ ├── configure.in │ ├── copying │ ├── ctrl │ ├── Makefile.am │ ├── agg_bezier_ctrl.cpp │ ├── agg_cbox_ctrl.cpp │ ├── agg_gamma_ctrl.cpp │ ├── agg_gamma_spline.cpp │ ├── agg_polygon_ctrl.cpp │ ├── agg_rbox_ctrl.cpp │ ├── agg_scale_ctrl.cpp │ ├── agg_slider_ctrl.cpp │ └── agg_spline_ctrl.cpp │ ├── install │ ├── news │ ├── platform │ ├── AmigaOS │ │ ├── Makefile.am │ │ └── agg_platform_support.cpp │ ├── BeOS │ │ ├── Makefile.am │ │ └── agg_platform_support.cpp │ ├── Makefile.am │ ├── X11 │ │ ├── Makefile.am │ │ └── agg_platform_support.cpp │ ├── mac │ │ ├── Makefile.am │ │ ├── agg_mac_pmap.cpp │ │ └── agg_platform_support.cpp │ ├── sdl │ │ ├── Makefile.am │ │ └── agg_platform_support.cpp │ └── win32 │ │ ├── Makefile.am │ │ ├── agg_platform_support.cpp │ │ └── agg_win32_bmp.cpp │ └── readme └── agg-doc ├── agg.styles.css ├── basic_renderers ├── basic_renderers.agdoc.html ├── pixfmt_rgb24.gif ├── rendering_buffer1.gif ├── rendering_buffer2.gif ├── rendering_buffer3.gif ├── rendering_buffer4.gif ├── spectrum.png ├── spectrum_amask1.png └── spectrum_amask2.png ├── index.html ├── introduction ├── aliased_pix_accuracy.gif ├── aliased_subpix_accuracy.gif ├── anti_aliased.gif ├── cie_1931.jpg ├── introduction.agdoc.html ├── line_thickness.gif ├── qual_gdip_agg.gif ├── stereo_enlarged.gif ├── stereo_small.gif ├── subpixel_accuracy1.gif ├── subpixel_accuracy2.gif ├── subpixel_bresenham.gif └── typical_scheme.gif ├── link.gif └── scanlines ├── scanline_p.gif ├── scanline_u.gif └── scanlines.agdoc.html /agg-2.4/AUTHORS: -------------------------------------------------------------------------------- 1 | Anti-Grain Geometry - Version 2.4 2 | Copyright (C) 2002-2005 Maxim Shemanarev (McSeem) 3 | -------------------------------------------------------------------------------- /agg-2.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/CMakeLists.txt -------------------------------------------------------------------------------- /agg-2.4/ChangeLog: -------------------------------------------------------------------------------- 1 | Visit http://antigrain.com/news -------------------------------------------------------------------------------- /agg-2.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile -------------------------------------------------------------------------------- /agg-2.4/Makefile.AmigaOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.AmigaOS -------------------------------------------------------------------------------- /agg-2.4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.BeOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.BeOS -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.CYGWIN_NT-5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.CYGWIN_NT-5.0 -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.CYGWIN_NT-5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.CYGWIN_NT-5.1 -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.Darwin -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.Darwin.SDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.Darwin.SDL -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.IRIX64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.IRIX64 -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.Linux -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.Linux.SDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.Linux.SDL -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.MINGW32_NT-5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.MINGW32_NT-5.0 -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.MINGW32_NT-5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.MINGW32_NT-5.1 -------------------------------------------------------------------------------- /agg-2.4/Makefile.in.SunOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/Makefile.in.SunOS -------------------------------------------------------------------------------- /agg-2.4/NEWS: -------------------------------------------------------------------------------- 1 | Visit http://antigrain.com/news -------------------------------------------------------------------------------- /agg-2.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/README -------------------------------------------------------------------------------- /agg-2.4/agg2d/agg2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/agg2d/agg2d.cpp -------------------------------------------------------------------------------- /agg-2.4/agg2d/agg2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/agg2d/agg2d.h -------------------------------------------------------------------------------- /agg-2.4/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/autogen.sh -------------------------------------------------------------------------------- /agg-2.4/bin/AggConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/bin/AggConfig.cmake.in -------------------------------------------------------------------------------- /agg-2.4/bin/AggConfigOutBuild.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/bin/AggConfigOutBuild.cmake.in -------------------------------------------------------------------------------- /agg-2.4/bin/FindAgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/bin/FindAgg.cmake -------------------------------------------------------------------------------- /agg-2.4/bin/FindEXPAT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/bin/FindEXPAT.cmake -------------------------------------------------------------------------------- /agg-2.4/bin/FindFreetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/bin/FindFreetype.cmake -------------------------------------------------------------------------------- /agg-2.4/bin/UseAgg.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/bin/UseAgg.cmake.in -------------------------------------------------------------------------------- /agg-2.4/cmake_install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/cmake_install.html -------------------------------------------------------------------------------- /agg-2.4/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/configure.in -------------------------------------------------------------------------------- /agg-2.4/copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/copying -------------------------------------------------------------------------------- /agg-2.4/distclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/distclean -------------------------------------------------------------------------------- /agg-2.4/doc/AggCP-Gradients1_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/doc/AggCP-Gradients1_readme.txt -------------------------------------------------------------------------------- /agg-2.4/examples/BeOS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/BeOS/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/BeOS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/BeOS/readme.txt -------------------------------------------------------------------------------- /agg-2.4/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/CMakeLists.txt -------------------------------------------------------------------------------- /agg-2.4/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/examples/X11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/X11/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/X11/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/X11/readme.txt -------------------------------------------------------------------------------- /agg-2.4/examples/aa_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/aa_demo.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/aa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/aa_test.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/agg2d_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/agg2d_demo.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/alpha_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/alpha_gradient.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/alpha_mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/alpha_mask.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/alpha_mask2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/alpha_mask2.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/alpha_mask3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/alpha_mask3.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/art/agg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/agg.bmp -------------------------------------------------------------------------------- /agg-2.4/examples/art/agg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/agg.ppm -------------------------------------------------------------------------------- /agg-2.4/examples/art/compositing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/compositing.bmp -------------------------------------------------------------------------------- /agg-2.4/examples/art/compositing.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/compositing.ppm -------------------------------------------------------------------------------- /agg-2.4/examples/art/line_patterns.bmp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/line_patterns.bmp.zip -------------------------------------------------------------------------------- /agg-2.4/examples/art/shapes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/shapes.txt -------------------------------------------------------------------------------- /agg-2.4/examples/art/spheres.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/spheres.bmp -------------------------------------------------------------------------------- /agg-2.4/examples/art/spheres.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/spheres.ppm -------------------------------------------------------------------------------- /agg-2.4/examples/art/timesi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/art/timesi.zip -------------------------------------------------------------------------------- /agg-2.4/examples/bezier_div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/bezier_div.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/blend_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/blend_color.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/blur.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/bspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/bspline.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/circles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/circles.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/component_rendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/component_rendering.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/compositing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/compositing.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/compositing2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/compositing2.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/conv_contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/conv_contour.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/conv_dash_marker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/conv_dash_marker.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/conv_stroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/conv_stroke.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/distortions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/distortions.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/flash_rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/flash_rasterizer.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/flash_rasterizer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/flash_rasterizer2.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/freetype_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/freetype_test.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gamma_correction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gamma_correction.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gamma_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gamma_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gamma_tuner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gamma_tuner.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gouraud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gouraud.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gouraud_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gouraud_mesh.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gpc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gpc_test.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gradient_focal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gradient_focal.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gradients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gradients.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/gradients_contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/gradients_contour.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/graph_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/graph_test.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/idea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/idea.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/image1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/image1.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/image_alpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/image_alpha.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/image_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/image_filters.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/image_filters2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/image_filters2.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/image_fltr_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/image_fltr_graph.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/image_perspective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/image_perspective.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/image_resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/image_resample.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/image_transforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/image_transforms.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/interactive_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/interactive_polygon.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/interactive_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/interactive_polygon.h -------------------------------------------------------------------------------- /agg-2.4/examples/line_patterns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/line_patterns.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/line_patterns_clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/line_patterns_clip.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/line_thickness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/line_thickness.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/lion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/lion.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/lion_lens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/lion_lens.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/lion_outline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/lion_outline.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/macosx_carbon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/macosx_carbon/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/macosx_carbon/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/macosx_carbon/readme.txt -------------------------------------------------------------------------------- /agg-2.4/examples/macosx_sdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/macosx_sdl/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/macosx_sdl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/macosx_sdl/readme.txt -------------------------------------------------------------------------------- /agg-2.4/examples/make_arrows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/make_arrows.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/make_gb_poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/make_gb_poly.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/mol_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/mol_view.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/multi_clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/multi_clip.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/parse_lion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/parse_lion.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/pattern_fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/pattern_fill.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/pattern_perspective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/pattern_perspective.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/pattern_resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/pattern_resample.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/perspective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/perspective.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/pixel_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/pixel_formats.h -------------------------------------------------------------------------------- /agg-2.4/examples/polymorphic_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/polymorphic_renderer.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/raster_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/raster_text.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/rasterizer_compound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/rasterizer_compound.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/rasterizers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/rasterizers.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/rasterizers2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/rasterizers2.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/rounded_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/rounded_rect.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/scanline_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/scanline_boolean.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/scanline_boolean2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/scanline_boolean2.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/simple_blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/simple_blur.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/svg_viewer/agg_svg_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/svg_viewer/agg_svg_exception.h -------------------------------------------------------------------------------- /agg-2.4/examples/svg_viewer/agg_svg_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/svg_viewer/agg_svg_parser.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/svg_viewer/agg_svg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/svg_viewer/agg_svg_parser.h -------------------------------------------------------------------------------- /agg-2.4/examples/svg_viewer/agg_svg_path_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/svg_viewer/agg_svg_path_renderer.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/svg_viewer/agg_svg_path_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/svg_viewer/agg_svg_path_renderer.h -------------------------------------------------------------------------------- /agg-2.4/examples/svg_viewer/agg_svg_path_tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/svg_viewer/agg_svg_path_tokenizer.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/svg_viewer/agg_svg_path_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/svg_viewer/agg_svg_path_tokenizer.h -------------------------------------------------------------------------------- /agg-2.4/examples/svg_viewer/svg_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/svg_viewer/svg_test.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/trans_curve1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/trans_curve1.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/trans_curve1_ft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/trans_curve1_ft.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/trans_curve2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/trans_curve2.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/trans_curve2_ft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/trans_curve2_ft.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/trans_polar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/trans_polar.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/truetype_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/truetype_test.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/aa_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/aa_demo/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/aa_demo/aa_demo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/aa_demo/aa_demo.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/aa_demo/aa_demo.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/aa_demo/aa_demo.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/aa_demo/aa_demo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/aa_demo/aa_demo.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/aa_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/aa_test/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/aa_test/aa_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/aa_test/aa_test.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/aa_test/aa_test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/aa_test/aa_test.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/aa_test/aa_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/aa_test/aa_test.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/agg.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/agg.props -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/agg2d_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/agg2d_demo/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/agg2d_demo/agg2d_demo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/agg2d_demo/agg2d_demo.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_gradient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_gradient/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_gradient/alpha_gradient.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_gradient/alpha_gradient.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_gradient/alpha_gradient.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_gradient/alpha_gradient.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_gradient/alpha_gradient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_gradient/alpha_gradient.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask/alpha_mask.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask/alpha_mask.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask/alpha_mask.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask/alpha_mask.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask/alpha_mask.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask/alpha_mask.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask2/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask2/alpha_mask2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask2/alpha_mask2.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask2/alpha_mask2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask2/alpha_mask2.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask2/alpha_mask2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask2/alpha_mask2.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask3/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask3/alpha_mask3.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask3/alpha_mask3.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask3/alpha_mask3.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask3/alpha_mask3.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/alpha_mask3/alpha_mask3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/alpha_mask3/alpha_mask3.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/bezier_div/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/bezier_div/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/bezier_div/bezier_div.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/bezier_div/bezier_div.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/bezier_div/bezier_div.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/bezier_div/bezier_div.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/bezier_div/bezier_div.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/bezier_div/bezier_div.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/blend_color/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/blend_color/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/blend_color/blend_color.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/blend_color/blend_color.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/blend_color/blend_color.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/blend_color/blend_color.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/blend_color/blend_color.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/blend_color/blend_color.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/blur/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/blur/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/blur/blur.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/blur/blur.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/blur/blur.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/blur/blur.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/blur/blur.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/blur/blur.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/bspline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/bspline/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/bspline/bspline.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/bspline/bspline.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/bspline/bspline.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/bspline/bspline.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/bspline/bspline.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/bspline/bspline.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/circles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/circles/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/circles/circles.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/circles/circles.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/circles/circles.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/circles/circles.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/circles/circles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/circles/circles.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/component_rendering/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/component_rendering/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/component_rendering/component_rendering.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/component_rendering/component_rendering.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/component_rendering/component_rendering.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/component_rendering/component_rendering.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/component_rendering/component_rendering.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/component_rendering/component_rendering.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing/compositing.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing/compositing.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing/compositing.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing/compositing.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing/compositing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing/compositing.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing2/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing2/compositing2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing2/compositing2.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing2/compositing2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing2/compositing2.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/compositing2/compositing2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/compositing2/compositing2.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_contour/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_contour/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_contour/conv_contour.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_contour/conv_contour.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_contour/conv_contour.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_contour/conv_contour.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_contour/conv_contour.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_contour/conv_contour.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_dash_marker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_dash_marker/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_dash_marker/conv_dash_marker.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_dash_marker/conv_dash_marker.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_dash_marker/conv_dash_marker.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_dash_marker/conv_dash_marker.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_dash_marker/conv_dash_marker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_dash_marker/conv_dash_marker.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_stroke/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_stroke/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_stroke/conv_stroke.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_stroke/conv_stroke.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_stroke/conv_stroke.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_stroke/conv_stroke.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/conv_stroke/conv_stroke.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/conv_stroke/conv_stroke.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/distortions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/distortions/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/distortions/distortions.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/distortions/distortions.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/distortions/distortions.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/distortions/distortions.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/distortions/distortions.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/distortions/distortions.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/distortions/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/distortions/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/examples.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/examples.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/examples.sln -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/flash_rasterizer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/flash_rasterizer/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/flash_rasterizer/flash_rasterizer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/flash_rasterizer/flash_rasterizer.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/flash_rasterizer/flash_rasterizer.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/flash_rasterizer/flash_rasterizer.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/flash_rasterizer/flash_rasterizer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/flash_rasterizer/flash_rasterizer.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/flash_rasterizer2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/flash_rasterizer2/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/flash_rasterizer2/flash_rasterizer2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/flash_rasterizer2/flash_rasterizer2.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/flash_rasterizer2/flash_rasterizer2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/flash_rasterizer2/flash_rasterizer2.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/flash_rasterizer2/flash_rasterizer2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/flash_rasterizer2/flash_rasterizer2.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/freetype_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/freetype_test/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/freetype_test/freetype_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/freetype_test/freetype_test.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/freetype_test/freetype_test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/freetype_test/freetype_test.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/freetype_test/freetype_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/freetype_test/freetype_test.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/freetype_test/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/freetype_test/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_correction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_correction/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_correction/gamma_correction.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_correction/gamma_correction.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_correction/gamma_correction.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_correction/gamma_correction.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_correction/gamma_correction.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_correction/gamma_correction.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_ctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_ctrl/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_ctrl/gamma_ctrl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_ctrl/gamma_ctrl.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_ctrl/gamma_ctrl.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_ctrl/gamma_ctrl.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_ctrl/gamma_ctrl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_ctrl/gamma_ctrl.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_tuner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_tuner/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_tuner/gamma_tuner.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_tuner/gamma_tuner.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_tuner/gamma_tuner.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_tuner/gamma_tuner.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gamma_tuner/gamma_tuner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gamma_tuner/gamma_tuner.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gouraud/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gouraud/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gouraud/gouraud.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gouraud/gouraud.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gouraud/gouraud.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gouraud/gouraud.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gouraud/gouraud.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gouraud/gouraud.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gouraud_mesh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gouraud_mesh/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gouraud_mesh/gouraud_mesh.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gouraud_mesh/gouraud_mesh.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gouraud_mesh/gouraud_mesh.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gouraud_mesh/gouraud_mesh.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gouraud_mesh/gouraud_mesh.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gouraud_mesh/gouraud_mesh.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gpc_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gpc_test/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gpc_test/gpc_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gpc_test/gpc_test.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gpc_test/gpc_test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gpc_test/gpc_test.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gpc_test/gpc_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gpc_test/gpc_test.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradient_focal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradient_focal/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradient_focal/gradient_focal.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradient_focal/gradient_focal.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradient_focal/gradient_focal.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradient_focal/gradient_focal.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradient_focal/gradient_focal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradient_focal/gradient_focal.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradients/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradients/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradients/gradients.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradients/gradients.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradients/gradients.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradients/gradients.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradients/gradients.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradients/gradients.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/gradients/settings.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/gradients/settings.dat -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/graph_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/graph_test/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/graph_test/graph_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/graph_test/graph_test.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/graph_test/graph_test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/graph_test/graph_test.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/graph_test/graph_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/graph_test/graph_test.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/idea/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/idea/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/idea/idea.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/idea/idea.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/idea/idea.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/idea/idea.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/idea/idea.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/idea/idea.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image1/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image1/image1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image1/image1.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image1/image1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image1/image1.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image1/image1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image1/image1.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image1/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image1/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_alpha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_alpha/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_alpha/image_alpha.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_alpha/image_alpha.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_alpha/image_alpha.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_alpha/image_alpha.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_alpha/image_alpha.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_alpha/image_alpha.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_alpha/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_alpha/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters/image_filters.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters/image_filters.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters/image_filters.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters/image_filters.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters/image_filters.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters/image_filters.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters2/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters2/image_filters2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters2/image_filters2.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters2/image_filters2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters2/image_filters2.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters2/image_filters2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters2/image_filters2.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_filters2/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_filters2/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_fltr_graph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_fltr_graph/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_fltr_graph/image_fltr_graph.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_fltr_graph/image_fltr_graph.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_fltr_graph/image_fltr_graph.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_fltr_graph/image_fltr_graph.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_fltr_graph/image_fltr_graph.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_fltr_graph/image_fltr_graph.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_perspective/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_perspective/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_perspective/image_perspective.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_perspective/image_perspective.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_perspective/image_perspective.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_perspective/image_perspective.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_perspective/image_perspective.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_perspective/image_perspective.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_perspective/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_perspective/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_resample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_resample/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_resample/image_resample.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_resample/image_resample.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_resample/image_resample.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_resample/image_resample.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_resample/image_resample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_resample/image_resample.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_resample/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_resample/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_transforms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_transforms/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_transforms/image_transforms.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_transforms/image_transforms.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_transforms/image_transforms.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_transforms/image_transforms.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_transforms/image_transforms.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_transforms/image_transforms.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/image_transforms/readme!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/image_transforms/readme! -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_patterns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_patterns/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_patterns/line_patterns.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_patterns/line_patterns.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_patterns/line_patterns.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_patterns/line_patterns.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_patterns/line_patterns.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_patterns/line_patterns.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_patterns_clip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_patterns_clip/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_patterns_clip/line_patterns_clip.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_patterns_clip/line_patterns_clip.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_patterns_clip/line_patterns_clip.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_patterns_clip/line_patterns_clip.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_patterns_clip/line_patterns_clip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_patterns_clip/line_patterns_clip.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/line_thickness/line_thickness.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/line_thickness/line_thickness.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion/lion.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion/lion.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion/lion.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion/lion.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion/lion.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion/lion.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion_lens/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion_lens/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion_lens/lion_lens.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion_lens/lion_lens.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion_lens/lion_lens.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion_lens/lion_lens.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion_lens/lion_lens.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion_lens/lion_lens.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion_outline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion_outline/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion_outline/lion_outline.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion_outline/lion_outline.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion_outline/lion_outline.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion_outline/lion_outline.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/lion_outline/lion_outline.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/lion_outline/lion_outline.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/mol_view/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/mol_view/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/mol_view/mol_view.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/mol_view/mol_view.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/mol_view/mol_view.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/mol_view/mol_view.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/mol_view/mol_view.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/mol_view/mol_view.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/mol_view/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/mol_view/readme -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/multi_clip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/multi_clip/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/multi_clip/multi_clip.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/multi_clip/multi_clip.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/multi_clip/multi_clip.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/multi_clip/multi_clip.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/multi_clip/multi_clip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/multi_clip/multi_clip.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_fill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_fill/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_fill/pattern_fill.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_fill/pattern_fill.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_fill/pattern_fill.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_fill/pattern_fill.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_fill/pattern_fill.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_fill/pattern_fill.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_perspective/pattern_perspective.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_perspective/pattern_perspective.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_perspective/pattern_perspective.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_perspective/pattern_perspective.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_perspective/pattern_perspective.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_perspective/pattern_perspective.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_resample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_resample/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_resample/pattern_resample.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_resample/pattern_resample.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_resample/pattern_resample.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_resample/pattern_resample.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pattern_resample/pattern_resample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pattern_resample/pattern_resample.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/perspective/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/perspective/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/perspective/perspective.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/perspective/perspective.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/perspective/perspective.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/perspective/perspective.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/perspective/perspective.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/perspective/perspective.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/polymorphic_renderer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/polymorphic_renderer/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/polymorphic_renderer/polymorphic_renderer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/polymorphic_renderer/polymorphic_renderer.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/polymorphic_renderer/polymorphic_renderer.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/polymorphic_renderer/polymorphic_renderer.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/polymorphic_renderer/polymorphic_renderer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/polymorphic_renderer/polymorphic_renderer.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/StdAfx.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/StdAfx.h -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/pure_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/pure_api.cpp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/pure_api.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/pure_api.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/pure_api.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/pure_api.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/pure_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/pure_api.h -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/pure_api.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/pure_api.ico -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/pure_api.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/pure_api.rc -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/pure_api.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/pure_api.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/resource.h -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/pure_api/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/pure_api/small.ico -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/raster_text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/raster_text/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/raster_text/raster_text.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/raster_text/raster_text.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/raster_text/raster_text.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/raster_text/raster_text.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/raster_text/raster_text.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/raster_text/raster_text.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizer_compound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizer_compound/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizer_compound/rasterizer_compound.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizer_compound/rasterizer_compound.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizer_compound/rasterizer_compound.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizer_compound/rasterizer_compound.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizer_compound/rasterizer_compound.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizer_compound/rasterizer_compound.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizers/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizers/rasterizers.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizers/rasterizers.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizers/rasterizers.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizers/rasterizers.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizers/rasterizers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizers/rasterizers.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizers2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizers2/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizers2/rasterizers2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizers2/rasterizers2.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizers2/rasterizers2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizers2/rasterizers2.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rasterizers2/rasterizers2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rasterizers2/rasterizers2.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rounded_rect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rounded_rect/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rounded_rect/rounded_rect.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rounded_rect/rounded_rect.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rounded_rect/rounded_rect.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rounded_rect/rounded_rect.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/rounded_rect/rounded_rect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/rounded_rect/rounded_rect.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/scanline_boolean/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/scanline_boolean/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/scanline_boolean/scanline_boolean.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/scanline_boolean/scanline_boolean.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/scanline_boolean/scanline_boolean.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/scanline_boolean/scanline_boolean.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/scanline_boolean/scanline_boolean.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/scanline_boolean/scanline_boolean.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/scanline_boolean2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/scanline_boolean2/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/scanline_boolean2/scanline_boolean2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/scanline_boolean2/scanline_boolean2.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/scanline_boolean2/scanline_boolean2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/scanline_boolean2/scanline_boolean2.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/scanline_boolean2/scanline_boolean2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/scanline_boolean2/scanline_boolean2.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/simple_blur/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/simple_blur/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/simple_blur/simple_blur.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/simple_blur/simple_blur.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/simple_blur/simple_blur.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/simple_blur/simple_blur.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/simple_blur/simple_blur.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/simple_blur/simple_blur.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/svg_test/svg_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/svg_test/svg_test.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/svg_test/svg_test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/svg_test/svg_test.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/svg_test/svg_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/svg_test/svg_test.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_curve1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_curve1/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_curve1/trans_curve1.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_curve1/trans_curve1.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_curve1/trans_curve1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_curve1/trans_curve1.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_curve1/trans_curve1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_curve1/trans_curve1.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_curve2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_curve2/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_curve2/trans_curve2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_curve2/trans_curve2.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_curve2/trans_curve2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_curve2/trans_curve2.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_curve2/trans_curve2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_curve2/trans_curve2.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_polar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_polar/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_polar/trans_polar.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_polar/trans_polar.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_polar/trans_polar.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_polar/trans_polar.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/trans_polar/trans_polar.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/trans_polar/trans_polar.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/truetype_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/truetype_test/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/truetype_test/truetype_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/truetype_test/truetype_test.dsp -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/truetype_test/truetype_test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/truetype_test/truetype_test.dsw -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api/truetype_test/truetype_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api/truetype_test/truetype_test.vcxproj -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api_dmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api_dmc/Makefile -------------------------------------------------------------------------------- /agg-2.4/examples/win32_api_dmc/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/examples/win32_api_dmc/readme -------------------------------------------------------------------------------- /agg-2.4/font_freetype/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/font_freetype/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/font_freetype/agg_font_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/font_freetype/agg_font_freetype.cpp -------------------------------------------------------------------------------- /agg-2.4/font_freetype/agg_font_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/font_freetype/agg_font_freetype.h -------------------------------------------------------------------------------- /agg-2.4/font_freetype/agg_font_freetype2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/font_freetype/agg_font_freetype2.cpp -------------------------------------------------------------------------------- /agg-2.4/font_freetype/agg_font_freetype2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/font_freetype/agg_font_freetype2.h -------------------------------------------------------------------------------- /agg-2.4/font_win32_tt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/font_win32_tt/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/font_win32_tt/agg_font_win32_tt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/font_win32_tt/agg_font_win32_tt.cpp -------------------------------------------------------------------------------- /agg-2.4/font_win32_tt/agg_font_win32_tt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/font_win32_tt/agg_font_win32_tt.h -------------------------------------------------------------------------------- /agg-2.4/gpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/gpc/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/gpc/VERSIONS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/gpc/VERSIONS.TXT -------------------------------------------------------------------------------- /agg-2.4/gpc/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/gpc/copying.txt -------------------------------------------------------------------------------- /agg-2.4/gpc/gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/gpc/gpc.c -------------------------------------------------------------------------------- /agg-2.4/gpc/gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/gpc/gpc.h -------------------------------------------------------------------------------- /agg-2.4/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/include/agg_alpha_mask_u8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_alpha_mask_u8.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_arc.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_array.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_arrowhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_arrowhead.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_basics.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_bezier_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_bezier_arc.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_bitset_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_bitset_iterator.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_blur.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_bounding_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_bounding_rect.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_bspline.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_clip_liang_barsky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_clip_liang_barsky.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_color_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_color_gray.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_color_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_color_rgba.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_config.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_adaptor_vcgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_adaptor_vcgen.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_adaptor_vpgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_adaptor_vpgen.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_bspline.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_clip_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_clip_polygon.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_clip_polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_clip_polyline.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_close_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_close_polygon.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_concat.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_contour.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_curve.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_dash.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_gpc.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_marker.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_marker_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_marker_adaptor.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_segmentator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_segmentator.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_shorten_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_shorten_path.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_smooth_poly1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_smooth_poly1.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_stroke.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_transform.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_conv_unclose_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_conv_unclose_polygon.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_curves.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_dda_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_dda_line.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_ellipse.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_ellipse_bresenham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_ellipse_bresenham.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_embedded_raster_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_embedded_raster_fonts.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_font_cache_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_font_cache_manager.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_font_cache_manager2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_font_cache_manager2.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_gamma_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_gamma_functions.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_gamma_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_gamma_lut.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_glyph_raster_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_glyph_raster_bin.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_gradient_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_gradient_lut.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_gsv_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_gsv_text.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_image_accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_image_accessors.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_image_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_image_filters.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_line_aa_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_line_aa_basics.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_math.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_math_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_math_stroke.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_path_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_path_length.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_path_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_path_storage.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_path_storage_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_path_storage_integer.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_pattern_filters_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_pattern_filters_rgba.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_pixfmt_amask_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_pixfmt_amask_adaptor.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_pixfmt_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_pixfmt_base.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_pixfmt_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_pixfmt_gray.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_pixfmt_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_pixfmt_rgb.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_pixfmt_rgb_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_pixfmt_rgb_packed.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_pixfmt_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_pixfmt_rgba.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_pixfmt_transposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_pixfmt_transposer.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rasterizer_cells_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rasterizer_cells_aa.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rasterizer_compound_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rasterizer_compound_aa.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rasterizer_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rasterizer_outline.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rasterizer_outline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rasterizer_outline_aa.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rasterizer_scanline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rasterizer_scanline_aa.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rasterizer_scanline_aa_nogamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rasterizer_scanline_aa_nogamma.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rasterizer_sl_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rasterizer_sl_clip.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_renderer_base.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_renderer_markers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_renderer_markers.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_renderer_mclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_renderer_mclip.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_renderer_outline_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_renderer_outline_aa.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_renderer_outline_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_renderer_outline_image.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_renderer_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_renderer_primitives.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_renderer_raster_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_renderer_raster_text.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_renderer_scanline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_renderer_scanline.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rendering_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rendering_buffer.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rendering_buffer_dynarow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rendering_buffer_dynarow.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_rounded_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_rounded_rect.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_scanline_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_scanline_bin.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_scanline_boolean_algebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_scanline_boolean_algebra.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_scanline_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_scanline_p.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_scanline_storage_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_scanline_storage_aa.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_scanline_storage_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_scanline_storage_bin.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_scanline_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_scanline_u.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_shorten_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_shorten_path.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_simul_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_simul_eq.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_allocator.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_converter.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_gouraud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_gouraud.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_gouraud_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_gouraud_gray.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_gouraud_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_gouraud_rgba.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_gradient.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_gradient_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_gradient_alpha.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_gradient_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_gradient_contour.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_gradient_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_gradient_image.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_image_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_image_filter.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_image_filter_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_image_filter_gray.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_image_filter_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_image_filter_rgb.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_image_filter_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_image_filter_rgba.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_interpolator_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_interpolator_adaptor.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_interpolator_linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_interpolator_linear.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_interpolator_persp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_interpolator_persp.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_interpolator_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_interpolator_trans.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_pattern_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_pattern_gray.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_pattern_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_pattern_rgb.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_pattern_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_pattern_rgba.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_solid.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_span_subdiv_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_span_subdiv_adaptor.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_trans_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_trans_affine.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_trans_bilinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_trans_bilinear.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_trans_double_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_trans_double_path.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_trans_perspective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_trans_perspective.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_trans_single_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_trans_single_path.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_trans_viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_trans_viewport.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_trans_warp_magnifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_trans_warp_magnifier.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vcgen_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vcgen_bspline.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vcgen_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vcgen_contour.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vcgen_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vcgen_dash.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vcgen_markers_term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vcgen_markers_term.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vcgen_smooth_poly1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vcgen_smooth_poly1.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vcgen_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vcgen_stroke.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vcgen_vertex_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vcgen_vertex_sequence.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vertex_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vertex_sequence.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vpgen_clip_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vpgen_clip_polygon.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vpgen_clip_polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vpgen_clip_polyline.h -------------------------------------------------------------------------------- /agg-2.4/include/agg_vpgen_segmentator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/agg_vpgen_segmentator.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_bezier_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_bezier_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_cbox_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_cbox_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_gamma_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_gamma_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_gamma_spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_gamma_spline.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_polygon_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_polygon_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_rbox_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_rbox_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_scale_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_scale_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_slider_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_slider_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/ctrl/agg_spline_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/ctrl/agg_spline_ctrl.h -------------------------------------------------------------------------------- /agg-2.4/include/platform/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/platform/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/include/platform/agg_platform_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/platform/agg_platform_support.h -------------------------------------------------------------------------------- /agg-2.4/include/platform/mac/agg_mac_pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/platform/mac/agg_mac_pmap.h -------------------------------------------------------------------------------- /agg-2.4/include/platform/win32/agg_win32_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/platform/win32/agg_win32_bmp.h -------------------------------------------------------------------------------- /agg-2.4/include/util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/util/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/include/util/agg_color_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/util/agg_color_conv.h -------------------------------------------------------------------------------- /agg-2.4/include/util/agg_color_conv_rgb16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/util/agg_color_conv_rgb16.h -------------------------------------------------------------------------------- /agg-2.4/include/util/agg_color_conv_rgb8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/include/util/agg_color_conv_rgb8.h -------------------------------------------------------------------------------- /agg-2.4/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/install -------------------------------------------------------------------------------- /agg-2.4/libagg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/libagg.m4 -------------------------------------------------------------------------------- /agg-2.4/libagg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/libagg.pc.in -------------------------------------------------------------------------------- /agg-2.4/myapp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/myapp/CMakeLists.txt -------------------------------------------------------------------------------- /agg-2.4/myapp/CMakeLists.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/myapp/CMakeLists.txt.in -------------------------------------------------------------------------------- /agg-2.4/myapp/agg2d_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/myapp/agg2d_demo.cpp -------------------------------------------------------------------------------- /agg-2.4/myapp/my_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/myapp/my_demo.cpp -------------------------------------------------------------------------------- /agg-2.4/myapp/myproject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/myapp/myproject.cmake -------------------------------------------------------------------------------- /agg-2.4/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/CMakeLists.txt -------------------------------------------------------------------------------- /agg-2.4/src/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agg-2.4/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/Makefile -------------------------------------------------------------------------------- /agg-2.4/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/src/agg_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_arc.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_arrowhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_arrowhead.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_bezier_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_bezier_arc.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_bspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_bspline.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_color_rgba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_color_rgba.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_curves.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_embedded_raster_fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_embedded_raster_fonts.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_gsv_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_gsv_text.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_image_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_image_filters.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_line_aa_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_line_aa_basics.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_line_profile_aa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_line_profile_aa.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_rounded_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_rounded_rect.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_sqrt_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_sqrt_tables.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_trans_affine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_trans_affine.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_trans_double_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_trans_double_path.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_trans_single_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_trans_single_path.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_trans_warp_magnifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_trans_warp_magnifier.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vcgen_bspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vcgen_bspline.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vcgen_contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vcgen_contour.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vcgen_dash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vcgen_dash.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vcgen_markers_term.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vcgen_markers_term.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vcgen_smooth_poly1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vcgen_smooth_poly1.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vcgen_stroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vcgen_stroke.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vpgen_clip_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vpgen_clip_polygon.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vpgen_clip_polyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vpgen_clip_polyline.cpp -------------------------------------------------------------------------------- /agg-2.4/src/agg_vpgen_segmentator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/agg_vpgen_segmentator.cpp -------------------------------------------------------------------------------- /agg-2.4/src/authors: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agg-2.4/src/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/autogen.sh -------------------------------------------------------------------------------- /agg-2.4/src/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/configure.in -------------------------------------------------------------------------------- /agg-2.4/src/copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/copying -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_bezier_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_bezier_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_cbox_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_cbox_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_gamma_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_gamma_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_gamma_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_gamma_spline.cpp -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_polygon_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_polygon_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_rbox_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_rbox_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_scale_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_scale_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_slider_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_slider_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/src/ctrl/agg_spline_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/ctrl/agg_spline_ctrl.cpp -------------------------------------------------------------------------------- /agg-2.4/src/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agg-2.4/src/news: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agg-2.4/src/platform/AmigaOS/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=agg_platform_support.cpp 2 | -------------------------------------------------------------------------------- /agg-2.4/src/platform/AmigaOS/agg_platform_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/AmigaOS/agg_platform_support.cpp -------------------------------------------------------------------------------- /agg-2.4/src/platform/BeOS/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=agg_platform_support.cpp 2 | -------------------------------------------------------------------------------- /agg-2.4/src/platform/BeOS/agg_platform_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/BeOS/agg_platform_support.cpp -------------------------------------------------------------------------------- /agg-2.4/src/platform/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = X11 sdl win32 AmigaOS BeOS mac 2 | -------------------------------------------------------------------------------- /agg-2.4/src/platform/X11/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/X11/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/src/platform/X11/agg_platform_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/X11/agg_platform_support.cpp -------------------------------------------------------------------------------- /agg-2.4/src/platform/mac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/mac/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/src/platform/mac/agg_mac_pmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/mac/agg_mac_pmap.cpp -------------------------------------------------------------------------------- /agg-2.4/src/platform/mac/agg_platform_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/mac/agg_platform_support.cpp -------------------------------------------------------------------------------- /agg-2.4/src/platform/sdl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/sdl/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/src/platform/sdl/agg_platform_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/sdl/agg_platform_support.cpp -------------------------------------------------------------------------------- /agg-2.4/src/platform/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/win32/Makefile.am -------------------------------------------------------------------------------- /agg-2.4/src/platform/win32/agg_platform_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/win32/agg_platform_support.cpp -------------------------------------------------------------------------------- /agg-2.4/src/platform/win32/agg_win32_bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/platform/win32/agg_win32_bmp.cpp -------------------------------------------------------------------------------- /agg-2.4/src/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-2.4/src/readme -------------------------------------------------------------------------------- /agg-doc/agg.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/agg.styles.css -------------------------------------------------------------------------------- /agg-doc/basic_renderers/basic_renderers.agdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/basic_renderers.agdoc.html -------------------------------------------------------------------------------- /agg-doc/basic_renderers/pixfmt_rgb24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/pixfmt_rgb24.gif -------------------------------------------------------------------------------- /agg-doc/basic_renderers/rendering_buffer1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/rendering_buffer1.gif -------------------------------------------------------------------------------- /agg-doc/basic_renderers/rendering_buffer2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/rendering_buffer2.gif -------------------------------------------------------------------------------- /agg-doc/basic_renderers/rendering_buffer3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/rendering_buffer3.gif -------------------------------------------------------------------------------- /agg-doc/basic_renderers/rendering_buffer4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/rendering_buffer4.gif -------------------------------------------------------------------------------- /agg-doc/basic_renderers/spectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/spectrum.png -------------------------------------------------------------------------------- /agg-doc/basic_renderers/spectrum_amask1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/spectrum_amask1.png -------------------------------------------------------------------------------- /agg-doc/basic_renderers/spectrum_amask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/basic_renderers/spectrum_amask2.png -------------------------------------------------------------------------------- /agg-doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/index.html -------------------------------------------------------------------------------- /agg-doc/introduction/aliased_pix_accuracy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/aliased_pix_accuracy.gif -------------------------------------------------------------------------------- /agg-doc/introduction/aliased_subpix_accuracy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/aliased_subpix_accuracy.gif -------------------------------------------------------------------------------- /agg-doc/introduction/anti_aliased.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/anti_aliased.gif -------------------------------------------------------------------------------- /agg-doc/introduction/cie_1931.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/cie_1931.jpg -------------------------------------------------------------------------------- /agg-doc/introduction/introduction.agdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/introduction.agdoc.html -------------------------------------------------------------------------------- /agg-doc/introduction/line_thickness.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/line_thickness.gif -------------------------------------------------------------------------------- /agg-doc/introduction/qual_gdip_agg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/qual_gdip_agg.gif -------------------------------------------------------------------------------- /agg-doc/introduction/stereo_enlarged.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/stereo_enlarged.gif -------------------------------------------------------------------------------- /agg-doc/introduction/stereo_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/stereo_small.gif -------------------------------------------------------------------------------- /agg-doc/introduction/subpixel_accuracy1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/subpixel_accuracy1.gif -------------------------------------------------------------------------------- /agg-doc/introduction/subpixel_accuracy2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/subpixel_accuracy2.gif -------------------------------------------------------------------------------- /agg-doc/introduction/subpixel_bresenham.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/subpixel_bresenham.gif -------------------------------------------------------------------------------- /agg-doc/introduction/typical_scheme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/introduction/typical_scheme.gif -------------------------------------------------------------------------------- /agg-doc/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/link.gif -------------------------------------------------------------------------------- /agg-doc/scanlines/scanline_p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/scanlines/scanline_p.gif -------------------------------------------------------------------------------- /agg-doc/scanlines/scanline_u.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/scanlines/scanline_u.gif -------------------------------------------------------------------------------- /agg-doc/scanlines/scanlines.agdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/agg/HEAD/agg-doc/scanlines/scanlines.agdoc.html --------------------------------------------------------------------------------