Symbol: pixfmt_type
headers/libs/agg/agg_image_accessors.h
111
typedef typename pixfmt_type::color_type color_type;
headers/libs/agg/agg_image_accessors.h
112
typedef typename pixfmt_type::order_type order_type;
headers/libs/agg/agg_image_accessors.h
113
typedef typename pixfmt_type::value_type value_type;
headers/libs/agg/agg_image_accessors.h
114
enum pix_width_e { pix_width = pixfmt_type::pix_width };
headers/libs/agg/agg_image_accessors.h
117
image_accessor_no_clip(const pixfmt_type& pixf) : m_pixf(&pixf) {}
headers/libs/agg/agg_image_accessors.h
119
void attach(const pixfmt_type& pixf)
headers/libs/agg/agg_image_accessors.h
143
const pixfmt_type* m_pixf;
headers/libs/agg/agg_image_accessors.h
156
typedef typename pixfmt_type::color_type color_type;
headers/libs/agg/agg_image_accessors.h
157
typedef typename pixfmt_type::order_type order_type;
headers/libs/agg/agg_image_accessors.h
158
typedef typename pixfmt_type::value_type value_type;
headers/libs/agg/agg_image_accessors.h
159
enum pix_width_e { pix_width = pixfmt_type::pix_width };
headers/libs/agg/agg_image_accessors.h
162
image_accessor_clone(const pixfmt_type& pixf) : m_pixf(&pixf) {}
headers/libs/agg/agg_image_accessors.h
164
void attach(const pixfmt_type& pixf)
headers/libs/agg/agg_image_accessors.h
216
const pixfmt_type* m_pixf;
headers/libs/agg/agg_image_accessors.h
230
typedef typename pixfmt_type::color_type color_type;
headers/libs/agg/agg_image_accessors.h
231
typedef typename pixfmt_type::order_type order_type;
headers/libs/agg/agg_image_accessors.h
232
typedef typename pixfmt_type::value_type value_type;
headers/libs/agg/agg_image_accessors.h
233
enum pix_width_e { pix_width = pixfmt_type::pix_width };
headers/libs/agg/agg_image_accessors.h
236
image_accessor_wrap(const pixfmt_type& pixf) :
headers/libs/agg/agg_image_accessors.h
242
void attach(const pixfmt_type& pixf)
headers/libs/agg/agg_image_accessors.h
267
const pixfmt_type* m_pixf;
headers/libs/agg/agg_image_accessors.h
29
typedef typename pixfmt_type::color_type color_type;
headers/libs/agg/agg_image_accessors.h
30
typedef typename pixfmt_type::order_type order_type;
headers/libs/agg/agg_image_accessors.h
31
typedef typename pixfmt_type::value_type value_type;
headers/libs/agg/agg_image_accessors.h
32
enum pix_width_e { pix_width = pixfmt_type::pix_width };
headers/libs/agg/agg_image_accessors.h
35
image_accessor_clip(const pixfmt_type& pixf, const color_type& bk) :
headers/libs/agg/agg_image_accessors.h
38
pixfmt_type::make_pix(m_bk_buf, bk);
headers/libs/agg/agg_image_accessors.h
41
void attach(const pixfmt_type& pixf)
headers/libs/agg/agg_image_accessors.h
48
pixfmt_type::make_pix(m_bk_buf, bk);
headers/libs/agg/agg_image_accessors.h
97
const pixfmt_type* m_pixf;
headers/libs/agg/agg_pixfmt_amask_adaptor.h
232
pixfmt_type* m_pixf;
headers/libs/agg/agg_pixfmt_amask_adaptor.h
32
typedef typename pixfmt_type::color_type color_type;
headers/libs/agg/agg_pixfmt_amask_adaptor.h
33
typedef typename pixfmt_type::row_data row_data;
headers/libs/agg/agg_pixfmt_amask_adaptor.h
62
pixfmt_amask_adaptor(pixfmt_type& pixf, const amask_type& mask) :
headers/libs/agg/agg_pixfmt_amask_adaptor.h
66
void attach_pixfmt(pixfmt_type& pixf) { m_pixf = &pixf; }
headers/libs/agg/agg_pixfmt_transposer.h
151
pixfmt_type* m_pixf;
headers/libs/agg/agg_pixfmt_transposer.h
28
typedef typename pixfmt_type::color_type color_type;
headers/libs/agg/agg_pixfmt_transposer.h
29
typedef typename pixfmt_type::row_data row_data;
headers/libs/agg/agg_pixfmt_transposer.h
35
pixfmt_transposer(pixfmt_type& pixf) : m_pixf(&pixf) {}
headers/libs/agg/agg_pixfmt_transposer.h
36
void attach(pixfmt_type& pixf) { m_pixf = &pixf; }
headers/libs/agg/agg_renderer_base.h
34
typedef typename pixfmt_type::color_type color_type;
headers/libs/agg/agg_renderer_base.h
35
typedef typename pixfmt_type::row_data row_data;
headers/libs/agg/agg_renderer_base.h
39
renderer_base(pixfmt_type& ren) :
headers/libs/agg/agg_renderer_base.h
43
void attach(pixfmt_type& ren)
headers/libs/agg/agg_renderer_base.h
50
const pixfmt_type& ren() const { return *m_ren; }
headers/libs/agg/agg_renderer_base.h
51
pixfmt_type& ren() { return *m_ren; }
headers/libs/agg/agg_renderer_base.h
603
pixfmt_type* m_ren;
headers/libs/agg/agg_renderer_mclip.h
35
typedef typename pixfmt_type::color_type color_type;
headers/libs/agg/agg_renderer_mclip.h
36
typedef typename pixfmt_type::row_data row_data;
headers/libs/agg/agg_renderer_mclip.h
37
typedef renderer_base<pixfmt_type> base_ren_type;
headers/libs/agg/agg_renderer_mclip.h
40
renderer_mclip(pixfmt_type& pixf) :
headers/libs/agg/agg_renderer_mclip.h
45
void attach(pixfmt_type& pixf)
headers/libs/agg/agg_renderer_mclip.h
52
const pixfmt_type& ren() const { return m_ren.ren(); }
headers/libs/agg/agg_renderer_mclip.h
53
pixfmt_type& ren() { return m_ren.ren(); }
src/servers/app/drawing/Painter/agg_renderer_region.h
32
typedef typename pixfmt_type::color_type color_type;
src/servers/app/drawing/Painter/agg_renderer_region.h
33
typedef renderer_base<pixfmt_type> base_ren_type;
src/servers/app/drawing/Painter/agg_renderer_region.h
36
renderer_region(pixfmt_type& ren) :
src/servers/app/drawing/Painter/agg_renderer_region.h
47
const pixfmt_type& ren() const { return m_ren.ren(); }
src/servers/app/drawing/Painter/agg_renderer_region.h
48
pixfmt_type& ren() { return m_ren.ren(); }