⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 agg_span_pattern_rgb24.h

📁 这是VCF框架的代码
💻 H
字号:
//----------------------------------------------------------------------------// Anti-Grain Geometry - Version 2.1// Copyright (C) 2002-2004 Maxim Shemanarev (http://www.antigrain.com)//// Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears in all copies. // This software is provided "as is" without express or implied// warranty, and with no claim as to its suitability for any purpose.////----------------------------------------------------------------------------// Contact: mcseem@antigrain.com//          mcseemagg@yahoo.com//          http://www.antigrain.com//----------------------------------------------------------------------------#ifndef AGG_SPAN_PATTERN_RGB24_INCLUDED#define AGG_SPAN_PATTERN_RGB24_INCLUDED#include "agg_basics.h"#include "agg_pixfmt_rgb24.h"#include "agg_span_pattern.h"namespace agg{    //=======================================================span_pattern_rgb24    template<class Order, class Allocator = span_allocator<rgba8> >    class span_pattern_rgb24 : public span_pattern<rgba8, int8u, Allocator>    {    public:        typedef Allocator alloc_type;        typedef rgba8 color_type;        typedef span_pattern<color_type, int8u, alloc_type> base_type;        //--------------------------------------------------------------------        span_pattern_rgb24(alloc_type& alloc) : base_type(alloc) {}        //----------------------------------------------------------------        span_pattern_rgb24(alloc_type& alloc,                           const rendering_buffer& src,                            unsigned offset_x, unsigned offset_y,                            int8u alpha = 255) :            base_type(alloc, src, offset_x, offset_y, alpha)        {}        //--------------------------------------------------------------------        color_type* generate(int x, int y, unsigned len)        {               color_type* span = base_type::allocator().span();            unsigned sx = (base_type::offset_x() + x) % base_type::source_image().width();            unsigned wp = base_type::source_image().width() * 3;            const int8u* p = base_type::source_image().row((base_type::offset_y() + y) % base_type::source_image().height());            p += sx * 3;            do            {                span->r = p[Order::R];                span->g = p[Order::G];                span->b = p[Order::B];                span->a = base_type::alpha();                p += 3;                ++sx;                ++span;                if(sx >= base_type::source_image().width())                {                    sx -= base_type::source_image().width();                    p -= wp;                }            }            while(--len);            return base_type::allocator().span();        }    };}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -