update boost on linux
This commit is contained in:
@@ -1,35 +1,26 @@
|
||||
/*
|
||||
Copyright 2005-2007 Adobe Systems Incorporated
|
||||
|
||||
Use, modification and distribution are subject to the Boost Software License,
|
||||
Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
//
|
||||
// Copyright 2005-2007 Adobe Systems Incorporated
|
||||
//
|
||||
// Distributed under the Boost Software License, Version 1.0
|
||||
// See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
#ifndef BOOST_GIL_BIT_ALIGNED_PIXEL_ITERATOR_HPP
|
||||
#define BOOST_GIL_BIT_ALIGNED_PIXEL_ITERATOR_HPP
|
||||
|
||||
See http://opensource.adobe.com/gil for most recent version including documentation.
|
||||
*/
|
||||
#include <boost/gil/bit_aligned_pixel_reference.hpp>
|
||||
#include <boost/gil/pixel_iterator.hpp>
|
||||
|
||||
/*************************************************************************************************/
|
||||
|
||||
#ifndef GIL_BIT_ALIGNED_PIXEL_ITERATOR_HPP
|
||||
#define GIL_BIT_ALIGNED_PIXEL_ITERATOR_HPP
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
/// \file
|
||||
/// \brief A model of a heterogeneous pixel that is not byte aligned. Examples are bitmap (1-bit pixels) or 6-bit RGB (222)
|
||||
/// \author Lubomir Bourdev and Hailin Jin \n
|
||||
/// Adobe Systems Incorporated
|
||||
/// \date 2005-2007 \n Last updated on September 28, 2006
|
||||
///
|
||||
////////////////////////////////////////////////////////////////////////////////////////
|
||||
#include <boost/config.hpp>
|
||||
#include <boost/iterator/iterator_facade.hpp>
|
||||
|
||||
#include <functional>
|
||||
#include <boost/iterator/iterator_facade.hpp>
|
||||
#include "gil_config.hpp"
|
||||
#include "bit_aligned_pixel_reference.hpp"
|
||||
#include "pixel_iterator.hpp"
|
||||
|
||||
namespace boost { namespace gil {
|
||||
|
||||
/// A model of a heterogeneous pixel that is not byte aligned.
|
||||
/// Examples are bitmap (1-bit pixels) or 6-bit RGB (222).
|
||||
|
||||
/// \defgroup PixelIteratorNonAlignedPixelIterator bit_aligned_pixel_iterator
|
||||
/// \ingroup PixelIteratorModel
|
||||
/// \brief An iterator over non-byte-aligned pixels. Models PixelIteratorConcept, PixelBasedConcept, MemoryBasedIteratorConcept, HasDynamicXStepTypeConcept
|
||||
@@ -38,7 +29,7 @@ namespace boost { namespace gil {
|
||||
/// \brief An iterator over non-byte-aligned pixels. Models PixelIteratorConcept, PixelBasedConcept, MemoryBasedIteratorConcept, HasDynamicXStepTypeConcept
|
||||
///
|
||||
/// An iterator over pixels that correspond to non-byte-aligned bit ranges. Examples of such pixels are single bit grayscale pixel, or a 6-bit RGB 222 pixel.
|
||||
///
|
||||
///
|
||||
/// \ingroup PixelIteratorNonAlignedPixelIterator PixelBasedModel
|
||||
|
||||
template <typename NonAlignedPixelReference>
|
||||
@@ -48,17 +39,17 @@ struct bit_aligned_pixel_iterator : public iterator_facade<bit_aligned_pixel_ite
|
||||
const NonAlignedPixelReference,
|
||||
typename NonAlignedPixelReference::bit_range_t::difference_type> {
|
||||
private:
|
||||
typedef iterator_facade<bit_aligned_pixel_iterator<NonAlignedPixelReference>,
|
||||
using parent_t = iterator_facade<bit_aligned_pixel_iterator<NonAlignedPixelReference>,
|
||||
typename NonAlignedPixelReference::value_type,
|
||||
std::random_access_iterator_tag,
|
||||
const NonAlignedPixelReference,
|
||||
typename NonAlignedPixelReference::bit_range_t::difference_type> parent_t;
|
||||
typename NonAlignedPixelReference::bit_range_t::difference_type>;
|
||||
template <typename Ref> friend struct bit_aligned_pixel_iterator;
|
||||
|
||||
typedef typename NonAlignedPixelReference::bit_range_t bit_range_t;
|
||||
using bit_range_t = typename NonAlignedPixelReference::bit_range_t;
|
||||
public:
|
||||
typedef typename parent_t::difference_type difference_type;
|
||||
typedef typename parent_t::reference reference;
|
||||
using difference_type = typename parent_t::difference_type;
|
||||
using reference = typename parent_t::reference;
|
||||
|
||||
bit_aligned_pixel_iterator() {}
|
||||
bit_aligned_pixel_iterator(const bit_aligned_pixel_iterator& p) : _bit_range(p._bit_range) {}
|
||||
@@ -78,7 +69,7 @@ public:
|
||||
bit_range_t& bit_range() { return _bit_range; }
|
||||
private:
|
||||
bit_range_t _bit_range;
|
||||
BOOST_STATIC_CONSTANT(int, bit_size = NonAlignedPixelReference::bit_size);
|
||||
static constexpr int bit_size = NonAlignedPixelReference::bit_size;
|
||||
|
||||
friend class boost::iterator_core_access;
|
||||
reference dereference() const { return NonAlignedPixelReference(_bit_range); }
|
||||
@@ -90,15 +81,15 @@ private:
|
||||
bool equal(const bit_aligned_pixel_iterator& it) const { return _bit_range==it._bit_range; }
|
||||
};
|
||||
|
||||
template <typename NonAlignedPixelReference>
|
||||
struct const_iterator_type<bit_aligned_pixel_iterator<NonAlignedPixelReference> > {
|
||||
typedef bit_aligned_pixel_iterator<typename NonAlignedPixelReference::const_reference> type;
|
||||
template <typename NonAlignedPixelReference>
|
||||
struct const_iterator_type<bit_aligned_pixel_iterator<NonAlignedPixelReference> > {
|
||||
using type = bit_aligned_pixel_iterator<typename NonAlignedPixelReference::const_reference>;
|
||||
};
|
||||
|
||||
template <typename NonAlignedPixelReference>
|
||||
template <typename NonAlignedPixelReference>
|
||||
struct iterator_is_mutable<bit_aligned_pixel_iterator<NonAlignedPixelReference> > : public mpl::bool_<NonAlignedPixelReference::is_mutable> {};
|
||||
|
||||
template <typename NonAlignedPixelReference>
|
||||
template <typename NonAlignedPixelReference>
|
||||
struct is_iterator_adaptor<bit_aligned_pixel_iterator<NonAlignedPixelReference> > : public mpl::false_ {};
|
||||
|
||||
/////////////////////////////
|
||||
@@ -122,17 +113,17 @@ template <typename NonAlignedPixelReference>
|
||||
struct byte_to_memunit<bit_aligned_pixel_iterator<NonAlignedPixelReference> > : public mpl::int_<8> {};
|
||||
|
||||
template <typename NonAlignedPixelReference>
|
||||
inline std::ptrdiff_t memunit_step(const bit_aligned_pixel_iterator<NonAlignedPixelReference>&) {
|
||||
return NonAlignedPixelReference::bit_size;
|
||||
inline std::ptrdiff_t memunit_step(const bit_aligned_pixel_iterator<NonAlignedPixelReference>&) {
|
||||
return NonAlignedPixelReference::bit_size;
|
||||
}
|
||||
|
||||
template <typename NonAlignedPixelReference>
|
||||
inline std::ptrdiff_t memunit_distance(const bit_aligned_pixel_iterator<NonAlignedPixelReference>& p1, const bit_aligned_pixel_iterator<NonAlignedPixelReference>& p2) {
|
||||
return (p2.bit_range().current_byte() - p1.bit_range().current_byte())*8 + p2.bit_range().bit_offset() - p1.bit_range().bit_offset();
|
||||
inline std::ptrdiff_t memunit_distance(const bit_aligned_pixel_iterator<NonAlignedPixelReference>& p1, const bit_aligned_pixel_iterator<NonAlignedPixelReference>& p2) {
|
||||
return (p2.bit_range().current_byte() - p1.bit_range().current_byte())*8 + p2.bit_range().bit_offset() - p1.bit_range().bit_offset();
|
||||
}
|
||||
|
||||
template <typename NonAlignedPixelReference>
|
||||
inline void memunit_advance(bit_aligned_pixel_iterator<NonAlignedPixelReference>& p, std::ptrdiff_t diff) {
|
||||
inline void memunit_advance(bit_aligned_pixel_iterator<NonAlignedPixelReference>& p, std::ptrdiff_t diff) {
|
||||
p.bit_range().bit_advance(diff);
|
||||
}
|
||||
|
||||
@@ -153,7 +144,7 @@ NonAlignedPixelReference memunit_advanced_ref(bit_aligned_pixel_iterator<NonAlig
|
||||
|
||||
template <typename NonAlignedPixelReference>
|
||||
struct dynamic_x_step_type<bit_aligned_pixel_iterator<NonAlignedPixelReference> > {
|
||||
typedef memory_based_step_iterator<bit_aligned_pixel_iterator<NonAlignedPixelReference> > type;
|
||||
using type = memory_based_step_iterator<bit_aligned_pixel_iterator<NonAlignedPixelReference> >;
|
||||
};
|
||||
|
||||
/////////////////////////////
|
||||
@@ -161,13 +152,15 @@ struct dynamic_x_step_type<bit_aligned_pixel_iterator<NonAlignedPixelReference>
|
||||
/////////////////////////////
|
||||
|
||||
template <typename B, typename C, typename L, bool M>
|
||||
struct iterator_type_from_pixel<const bit_aligned_pixel_reference<B,C,L,M>,false,false,false> {
|
||||
typedef bit_aligned_pixel_iterator<bit_aligned_pixel_reference<B,C,L,false> > type;
|
||||
struct iterator_type_from_pixel<const bit_aligned_pixel_reference<B,C,L,M>,false,false,false>
|
||||
{
|
||||
using type = bit_aligned_pixel_iterator<bit_aligned_pixel_reference<B,C,L,false>> ;
|
||||
};
|
||||
|
||||
template <typename B, typename C, typename L, bool M>
|
||||
struct iterator_type_from_pixel<const bit_aligned_pixel_reference<B,C,L,M>,false,false,true> {
|
||||
typedef bit_aligned_pixel_iterator<bit_aligned_pixel_reference<B,C,L,true> > type;
|
||||
struct iterator_type_from_pixel<const bit_aligned_pixel_reference<B,C,L,M>,false,false,true>
|
||||
{
|
||||
using type = bit_aligned_pixel_iterator<bit_aligned_pixel_reference<B,C,L,true>>;
|
||||
};
|
||||
|
||||
template <typename B, typename C, typename L, bool M, bool IsPlanar, bool IsStep, bool IsMutable>
|
||||
@@ -179,9 +172,9 @@ struct iterator_type_from_pixel<bit_aligned_pixel_reference<B,C,L,M>,IsPlanar,Is
|
||||
namespace std {
|
||||
|
||||
// It is important to provide an overload of uninitialized_copy for bit_aligned_pixel_iterator. The default STL implementation calls placement new,
|
||||
// which is not defined for bit_aligned_pixel_iterator.
|
||||
// which is not defined for bit_aligned_pixel_iterator.
|
||||
template <typename NonAlignedPixelReference>
|
||||
boost::gil::bit_aligned_pixel_iterator<NonAlignedPixelReference> uninitialized_copy(boost::gil::bit_aligned_pixel_iterator<NonAlignedPixelReference> first,
|
||||
boost::gil::bit_aligned_pixel_iterator<NonAlignedPixelReference> uninitialized_copy(boost::gil::bit_aligned_pixel_iterator<NonAlignedPixelReference> first,
|
||||
boost::gil::bit_aligned_pixel_iterator<NonAlignedPixelReference> last,
|
||||
boost::gil::bit_aligned_pixel_iterator<NonAlignedPixelReference> dst) {
|
||||
return std::copy(first,last,dst);
|
||||
|
||||
Reference in New Issue
Block a user