Files
haiku-beta6/headers/libs/agg/agg_span_allocator.h
T

55 lines
1.8 KiB
C++
Raw Normal View History

2004-11-12 02:02:58 +00:00
//----------------------------------------------------------------------------
2006-06-14 14:30:17 +00:00
// Anti-Grain Geometry - Version 2.4
// Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
2004-11-12 02:02:58 +00:00
//
// 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: [email protected]
// [email protected]
// http://www.antigrain.com
//----------------------------------------------------------------------------
#ifndef AGG_SPAN_ALLOCATOR_INCLUDED
#define AGG_SPAN_ALLOCATOR_INCLUDED
2006-06-14 14:30:17 +00:00
#include "agg_array.h"
2004-11-12 02:02:58 +00:00
namespace agg
{
//----------------------------------------------------------span_allocator
template<class ColorT> class span_allocator
{
public:
typedef ColorT color_type;
//--------------------------------------------------------------------
2006-06-14 14:30:17 +00:00
AGG_INLINE color_type* allocate(unsigned span_len)
2004-11-12 02:02:58 +00:00
{
2006-06-14 14:30:17 +00:00
if(span_len > m_span.size())
2004-11-12 02:02:58 +00:00
{
2006-06-14 14:30:17 +00:00
// To reduce the number of reallocs we align the
// span_len to 256 color elements.
// Well, I just like this number and it looks reasonable.
//-----------------------
m_span.resize(((span_len + 255) >> 8) << 8);
2004-11-12 02:02:58 +00:00
}
2006-06-14 14:30:17 +00:00
return &m_span[0];
2004-11-12 02:02:58 +00:00
}
2006-06-14 14:30:17 +00:00
AGG_INLINE color_type* span() { return &m_span[0]; }
AGG_INLINE unsigned max_span_len() const { return m_span.size(); }
2004-11-12 02:02:58 +00:00
private:
2006-06-14 14:30:17 +00:00
pod_array<color_type> m_span;
2004-11-12 02:02:58 +00:00
};
}
#endif