]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/gil/test/extension/toolbox/gray_to_rgba.cpp
bump version to 15.2.11-pve1
[ceph.git] / ceph / src / boost / libs / gil / test / extension / toolbox / gray_to_rgba.cpp
CommitLineData
92f5a8d4
TL
1//
2// Copyright 2013 Christian Henning
3//
4// Distributed under the Boost Software License, Version 1.0
5// See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt
7//
8#include <boost/test/unit_test.hpp>
9
10#include <boost/gil.hpp>
11#include <boost/gil/extension/toolbox/color_converters/gray_to_rgba.hpp>
12
13using namespace boost;
14using namespace gil;
15
16BOOST_AUTO_TEST_SUITE( toolbox_tests )
17
18BOOST_AUTO_TEST_CASE( gray_to_rgba_test )
19{
20 gray8_pixel_t a( 45 );
21 rgba8_pixel_t b;
22
23 color_convert( a, b );
24}
25
26BOOST_AUTO_TEST_SUITE_END()