Searched refs:pixel_reference_is_proxy (Results 1 – 2 of 2) sorted by relevance
258 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()
202 struct pixel_reference_is_proxy struct217 : 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>>