Searched refs:m_pixf (Results 1 - 3 of 3) sorted by relevance

/haiku/headers/libs/agg/
H A Dagg_pixfmt_transposer.h34 pixfmt_transposer() : m_pixf(0) {}
35 pixfmt_transposer(pixfmt_type& pixf) : m_pixf(&pixf) {}
36 void attach(pixfmt_type& pixf) { m_pixf = &pixf; }
39 AGG_INLINE unsigned width() const { return m_pixf->height(); }
40 AGG_INLINE unsigned height() const { return m_pixf->width(); }
45 return m_pixf->pixel(y, x);
51 m_pixf->copy_pixel(y, x, c);
59 m_pixf->blend_pixel(y, x, c, cover);
67 m_pixf->copy_vline(y, x, len, c);
75 m_pixf
151 pixfmt_type* m_pixf; member in class:agg::pixfmt_transposer
[all...]
H A Dagg_image_accessors.h36 m_pixf(&pixf)
43 m_pixf = &pixf;
54 if(m_y >= 0 && m_y < (int)m_pixf->height() &&
55 m_x >= 0 && m_x < (int)m_pixf->width())
57 return m_pixf->pix_ptr(m_x, m_y);
67 if(y >= 0 && y < (int)m_pixf->height() &&
68 x >= 0 && x+(int)len <= (int)m_pixf->width())
70 return m_pix_ptr = m_pixf->pix_ptr(x, y);
88 m_y >= 0 && m_y < (int)m_pixf->height())
90 return m_pix_ptr = m_pixf
97 const pixfmt_type* m_pixf; member in class:agg::image_accessor_clip
143 const pixfmt_type* m_pixf; member in class:agg::image_accessor_no_clip
216 const pixfmt_type* m_pixf; member in class:agg::image_accessor_clone
267 const pixfmt_type* m_pixf; member in class:agg::image_accessor_wrap
[all...]
H A Dagg_pixfmt_amask_adaptor.h63 m_pixf(&pixf), m_mask(&mask), m_span()
66 void attach_pixfmt(pixfmt_type& pixf) { m_pixf = &pixf; }
73 return m_pixf->attach(pixf, x1, y1, x2, y2);
77 unsigned width() const { return m_pixf->width(); }
78 unsigned height() const { return m_pixf->height(); }
83 return m_pixf->pixel(x, y);
89 m_pixf->blend_pixel(x, y, c, m_mask->pixel(x, y));
95 m_pixf->blend_pixel(x, y, c, m_mask->combine_pixel(x, y, cover));
105 m_pixf->blend_solid_hspan(x, y, len, c, &m_span[0]);
116 m_pixf
232 pixfmt_type* m_pixf; member in class:agg::pixfmt_amask_adaptor
[all...]

Completed in 80 milliseconds