Home
last modified time | relevance | path

Searched refs:bmp_out (Results 1 – 13 of 13) sorted by relevance

/third_party/boost/libs/gil/test/extension/io/
Dmake.cpp142 …get_writer< const char*, bmp_tag >::type writer_char = make_writer(( bmp_out + "make_test.bmp" )… in BOOST_AUTO_TEST_CASE()
143 …get_writer< std::string, bmp_tag >::type writer_string = make_writer(( bmp_out + "make_test.bmp" )… in BOOST_AUTO_TEST_CASE()
145 FILE* file = fopen(( bmp_out + "make_test.bmp" ).c_str(), "wb" ); in BOOST_AUTO_TEST_CASE()
148 ofstream out(( bmp_out + "make_test.bmp" ).c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE()
151 fs::path my_path( ( bmp_out + "make_test.bmp" ).c_str() ); in BOOST_AUTO_TEST_CASE()
157 …get_writer< const char*, bmp_tag >::type writer_char = make_writer(( bmp_out + "make_test.bmp" )… in BOOST_AUTO_TEST_CASE()
158 …get_writer< std::string, bmp_tag >::type writer_string = make_writer(( bmp_out + "make_test.bmp" )… in BOOST_AUTO_TEST_CASE()
160 FILE* file = fopen( (bmp_out + string( "make_test.bmp")).c_str(), "wb" ); in BOOST_AUTO_TEST_CASE()
163 ofstream out( ( bmp_out + "make_test.bmp" ).c_str(), ios::binary ); in BOOST_AUTO_TEST_CASE()
166 fs::path my_path( bmp_out + "make_test.bmp" ); in BOOST_AUTO_TEST_CASE()
[all …]
Dbmp_write_test.cpp33 write_view( bmp_out + "rgb8_test.bmp" in BOOST_AUTO_TEST_CASE()
43 write_view( bmp_out + "rgba8_test.bmp" in BOOST_AUTO_TEST_CASE()
56 color_space_write_test< bmp_tag >( bmp_out + "rgb_color_space_test.bmp" in BOOST_AUTO_TEST_CASE()
57 , bmp_out + "bgr_color_space_test.bmp" in BOOST_AUTO_TEST_CASE()
Dbmp_test.cpp210 string filename( bmp_out + "write_test_string.bmp" ); in BOOST_AUTO_TEST_CASE()
222 string filename( bmp_out + "write_test_ofstream.bmp" ); in BOOST_AUTO_TEST_CASE()
236 string filename( bmp_out + "write_test_file.bmp" ); in BOOST_AUTO_TEST_CASE()
250 string filename( bmp_out + "write_test_info.bmp" ); in BOOST_AUTO_TEST_CASE()
289 string filename( bmp_out + "stream_test.bmp" ); in BOOST_AUTO_TEST_CASE()
342 write_view( bmp_out + "dynamic_image_test.bmp" in BOOST_AUTO_TEST_CASE()
Dbmp_old_test.cpp66 bmp_write_view( bmp_out + "old_write_view_test.bmp" in BOOST_AUTO_TEST_CASE()
92 bmp_write_view( bmp_out + "old_dynamic_image_test.bmp" in BOOST_AUTO_TEST_CASE()
Dall_formats_test.cpp36 fs::create_directories(fs::path(bmp_out)); in BOOST_AUTO_TEST_CASE()
37 write_view( bmp_out + "all_formats_test.bmp", view( img ), bmp_tag() ); in BOOST_AUTO_TEST_CASE()
Dsimple_all_formats.cpp30 fs::create_directories(fs::path(bmp_out)); in test_bmp()
31 gil::write_view(bmp_out + "simple_all_format.bmp", gil::view(img), gil::bmp_tag()); in test_bmp()
Dpaths.hpp40 static const std::string bmp_out = base + "output/"; variable
Dbmp_read_test.cpp32 write_view( bmp_out + file_name in BOOST_AUTO_TEST_SUITE()
492 write_view( bmp_out + "rgb_partial.bmp" in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/gil/test/extension/io/bmp/
Dbmp_make.cpp181 gil::make_writer((bmp_out + "make_test.bmp").c_str(), gil::bmp_tag()); in test_make_writer()
183 gil::make_writer((bmp_out + "make_test.bmp"), gil::bmp_tag()); in test_make_writer()
185 FILE* file = fopen((bmp_out + "make_test.bmp").c_str(), "wb"); in test_make_writer()
189 std::ofstream out((bmp_out + "make_test.bmp").c_str(), std::ios::binary); in test_make_writer()
194 fs::path my_path((bmp_out + "make_test.bmp").c_str()); in test_make_writer()
202 … gil::make_writer((bmp_out + "make_test.bmp").c_str(), gil::image_write_info<gil::bmp_tag>()); in test_make_writer()
204 gil::make_writer((bmp_out + "make_test.bmp"), gil::image_write_info<gil::bmp_tag>()); in test_make_writer()
206 FILE* file = fopen((bmp_out + std::string("make_test.bmp")).c_str(), "wb"); in test_make_writer()
210 std::ofstream out((bmp_out + "make_test.bmp").c_str(), std::ios::binary); in test_make_writer()
215 fs::path my_path(bmp_out + "make_test.bmp"); in test_make_writer()
[all …]
Dbmp_write_test.cpp23 gil::write_view(bmp_out + "rgb8_test.bmp", create_mandel_view(200, 200, in test_write_rgb8()
29 gil::write_view(bmp_out + "rgba8_test.bmp", create_mandel_view(200, 200, in test_write_rgba8()
36 bmp_out + "rgb_color_space_test.bmp", in test_rgb_color_space_write()
37 bmp_out + "bgr_color_space_test.bmp"); in test_rgb_color_space_write()
Dbmp_test.cpp175 std::string filename(bmp_out + "write_test_string.bmp"); in test_write_view()
179 std::string filename(bmp_out + "write_test_ofstream.bmp"); in test_write_view()
185 std::string filename(bmp_out + "write_test_file.bmp"); in test_write_view()
191 std::string filename(bmp_out + "write_test_info.bmp"); in test_write_view()
220 std::string filename(bmp_out + "stream_test.bmp"); in test_stream()
261 gil::write_view(bmp_out + "dynamic_image_test.bmp", gil::view(image), gil::bmp_tag()); in test_dynamic_image()
Dbmp_old_test.cpp61 gil::bmp_write_view(bmp_out + "old_write_view_test.bmp", create_mandel_view(1000, 600, b, g)); in test_old_write_view()
77 gil::bmp_write_view(bmp_out + "old_dynamic_image_test.bmp", gil::view(image)); in test_old_dynamic_image()
Dbmp_read_test.cpp24 write_view(bmp_out + file_name, gil::view(img), gil::bmp_tag()); in write()
442 write_view(bmp_out + "rgb_partial.bmp", gil::view(img), gil::bmp_tag()); in test_partial_image()