/haiku/headers/libs/agg/ |
H A D | agg_image_accessors.h | 35 image_accessor_clip(const pixfmt_type& pixf, const color_type& bk) : in image_accessor_clip() argument 36 m_pixf(&pixf) in image_accessor_clip() 41 void attach(const pixfmt_type& pixf) in attach() argument 43 m_pixf = &pixf; in attach() 117 image_accessor_no_clip(const pixfmt_type& pixf) : m_pixf(&pixf) {} in image_accessor_no_clip() argument 119 void attach(const pixfmt_type& pixf) in attach() argument 121 m_pixf = &pixf; in attach() 162 image_accessor_clone(const pixfmt_type& pixf) : m_pixf(&pixf) {} in image_accessor_clone() argument 164 void attach(const pixfmt_type& pixf) in attach() argument 166 m_pixf = &pixf; in attach() [all …]
|
H A D | agg_pixfmt_amask_adaptor.h | 62 pixfmt_amask_adaptor(pixfmt_type& pixf, const amask_type& mask) : in pixfmt_amask_adaptor() argument 63 m_pixf(&pixf), m_mask(&mask), m_span() in pixfmt_amask_adaptor() 66 void attach_pixfmt(pixfmt_type& pixf) { m_pixf = &pixf; } in attach_pixfmt() argument 71 bool attach_pixfmt(PixFmt_& pixf, int x1, int y1, int x2, int y2) in attach_pixfmt() argument 73 return m_pixf->attach(pixf, x1, y1, x2, y2); in attach_pixfmt()
|
H A D | agg_pixfmt_transposer.h | 35 pixfmt_transposer(pixfmt_type& pixf) : m_pixf(&pixf) {} in pixfmt_transposer() argument 36 void attach(pixfmt_type& pixf) { m_pixf = &pixf; } in attach() argument
|
H A D | agg_renderer_mclip.h | 40 renderer_mclip(pixfmt_type& pixf) : in renderer_mclip() argument 41 m_ren(pixf), in renderer_mclip() 45 void attach(pixfmt_type& pixf) in attach() argument 47 m_ren.attach(pixf); in attach()
|
H A D | agg_pixfmt_gray.h | 183 bool attach(PixFmt& pixf, int x1, int y1, int x2, int y2) in attach() argument 186 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1))) in attach() 188 int stride = pixf.stride(); in attach() 189 m_rbuf->attach(pixf.pix_ptr(r.x1, stride < 0 ? r.y2 : r.y1), in attach()
|
H A D | agg_pixfmt_rgb.h | 241 bool attach(PixFmt& pixf, int x1, int y1, int x2, int y2) in attach() argument 244 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1))) in attach() 246 int stride = pixf.stride(); in attach() 247 m_rbuf->attach(pixf.pix_ptr(r.x1, stride < 0 ? r.y2 : r.y1), in attach()
|
H A D | agg_pixfmt_rgb_packed.h | 836 bool attach(PixFmt& pixf, int x1, int y1, int x2, int y2) in attach() argument 839 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1))) in attach() 841 int stride = pixf.stride(); in attach() 842 m_rbuf->attach(pixf.pix_ptr(r.x1, stride < 0 ? r.y2 : r.y1), in attach()
|
H A D | agg_pixfmt_rgba.h | 1780 bool attach(PixFmt& pixf, int x1, int y1, int x2, int y2) in attach() argument 1783 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1))) in attach() 1785 int stride = pixf.stride(); in attach() 1786 m_rbuf->attach(pixf.pix_ptr(r.x1, stride < 0 ? r.y2 : r.y1), in attach() 2365 bool attach(PixFmt& pixf, int x1, int y1, int x2, int y2) in attach() argument 2368 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1))) in attach() 2370 int stride = pixf.stride(); in attach() 2371 m_rbuf->attach(pixf.pix_ptr(r.x1, stride < 0 ? r.y2 : r.y1), in attach()
|