#include <stdio.h>#include <stdlib.h>#include <math.h>#include <time.h>#include "agg_rendering_buffer.h"#include "agg_rasterizer_scanline_aa.h"#include "agg_ellipse.h"#include "agg_trans_affine.h"#include "agg_conv_transform.h"#include "agg_conv_stroke.h"#include "agg_pixfmt_rgb.h"#include "agg_scanline_p.h"#include "agg_renderer_scanline.h"#include "agg_image_filters.h"#include "ctrl/agg_slider_ctrl.h"#include "ctrl/agg_rbox_ctrl.h"#include "ctrl/agg_cbox_ctrl.h"#include "platform/agg_platform_support.h"Go to the source code of this file.
Classes | |
| struct | filter_base |
| struct | image_filter_const_radius_adaptor |
| struct | image_filter_variable_radius_adaptor |
| class | the_application |
Enumerations | |
| enum | flip_y_e { flip_y = true } |
Functions | |
| int | agg_main (int argc, char *argv[]) |
|
|
Definition at line 21 of file image_fltr_graph.cpp. 00021 { flip_y = true };
|
|
||||||||||||
|
Definition at line 302 of file image_fltr_graph.cpp. References platform_support::caption(), flip_y, platform_support::init(), agg::pix_format_bgr24, platform_support::run(), and agg::window_resize. 00303 { 00304 the_application app(agg::pix_format_bgr24, flip_y); 00305 app.caption("Image filters' shape comparison"); 00306 00307 if(app.init(780, 300, agg::window_resize)) 00308 { 00309 return app.run(); 00310 } 00311 return 0; 00312 }
|