Home
last modified time | relevance | path

Searched refs:pixel_reference_is_proxy (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/gil/test/legacy/
Dpixel.cpp258 static_assert(pixel_reference_is_proxy<rgb8_planar_ref_t>::value, ""); in test_packed_pixel()
259 static_assert(pixel_reference_is_proxy<bgr121_ref_t>::value, ""); in test_packed_pixel()
261 static_assert(!pixel_reference_is_proxy<rgb8_pixel_t>::value, ""); in test_packed_pixel()
262 static_assert(!pixel_reference_is_proxy<rgb8_pixel_t&>::value, ""); in test_packed_pixel()
263 static_assert(!pixel_reference_is_proxy<rgb8_pixel_t const&>::value, ""); in test_packed_pixel()
/third_party/boost/boost/gil/
Dmetafunctions.hpp202 struct pixel_reference_is_proxy struct
217 : mp11::mp_or<is_reference<Pixel>, pixel_reference_is_proxy<Pixel>> {};
234 : mp11::mp_and<pixel_reference_is_proxy<R>, pixel_reference_is_mutable<R>>