Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

libs/gil/test/extension/toolbox/pixel_bit_size.cpp

//
// Copyright 2013 Christian Henning
//
// 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
//
#include <boost/gil.hpp>
#include <boost/gil/extension/toolbox/metafunctions.hpp>
#include <boost/gil/extension/toolbox/metafunctions/pixel_bit_size.hpp>

namespace gil = boost::gil;

void test_pixel_bit_size()
{
    using image_t = gil::bit_aligned_image5_type
        <
            16, 16, 16, 8, 8, gil::devicen_layout_t<5>
        >::type;
    static_assert(gil::pixel_bit_size<image_t::view_t::reference>::value == 64, "");
}

int main()
{
    test_pixel_bit_size();
}