#include <stdio.h>#include "agg_trans_affine.h"#include "agg_conv_stroke.h"#include "agg_rasterizer_scanline_aa.h"#include "agg_rendering_buffer.h"#include "agg_scanline_u.h"#include "agg_renderer_scanline.h"#include "agg_gamma_lut.h"#include "ctrl/agg_slider_ctrl.h"#include "platform/agg_platform_support.h"#include "pixel_formats.h"Go to the source code of this file.
Classes | |
| class | the_application |
Defines | |
| #define | AGG_BGR24 |
Enumerations | |
| enum | flip_y_e { flip_y = true } |
Functions | |
| int | agg_main (int argc, char *argv[]) |
|
|
Definition at line 12 of file gamma_correction.cpp. |
|
|
Definition at line 22 of file gamma_correction.cpp. 00022 { flip_y = true };
|
|
||||||||||||
|
Definition at line 158 of file gamma_correction.cpp. References platform_support::caption(), flip_y, platform_support::init(), pix_format, and platform_support::run(). 00159 { 00160 the_application app(pix_format, flip_y); 00161 app.caption("AGG Example. Thin red ellipse"); 00162 00163 if(app.init(400, 320, 0)) 00164 { 00165 return app.run(); 00166 } 00167 return 1; 00168 }
|