Searched defs:bit_aligned_pixel_reference (Results 1 – 1 of 1) sorted by relevance
/third_party/boost/boost/gil/ |
D | bit_aligned_pixel_reference.hpp | 115 struct bit_aligned_pixel_reference struct 117 static constexpr int bit_size = 125 using bit_range_t = boost::gil::bit_range<bit_size,IsMutable>; 126 using bitfield_t = BitField; 127 using data_ptr_t = mp11::mp_if_c<IsMutable, unsigned char*, const unsigned char*>; 129 using layout_t = Layout; 131 using value_type = typename packed_pixel_type<bitfield_t,ChannelBitSizes,Layout>::type; 132 … using reference = const bit_aligned_pixel_reference<BitField, ChannelBitSizes, Layout, IsMutable>; 133 … using const_reference = bit_aligned_pixel_reference<BitField,ChannelBitSizes,Layout,false> const; 135 static constexpr bool is_mutable = IsMutable; [all …]
|