roo_display
API Documentation for roo_display
Loading...
Searching...
No Matches
pixel_order.h
Go to the documentation of this file.
1#pragma once
2
3#include "roo_logging.h"
4
5namespace roo_display {
6
7// In case of color modes that store multiple pixels in a single byte,
8// specifies whether the leftmost pixel is mapped to the high or low order
9// bits.
10enum class ColorPixelOrder {
13};
14
15roo_logging::Stream& operator<<(roo_logging::Stream& os, ColorPixelOrder order);
16
17[[deprecated("Use ColorPixelOrder::kMsbFirst instead")]]
19[[deprecated("Use ColorPixelOrder::kLsbFirst instead")]]
21
22} // namespace roo_display
Defines 140 opaque HTML named colors.
constexpr auto COLOR_PIXEL_ORDER_LSB_FIRST
Definition pixel_order.h:20
roo_logging::Stream & operator<<(roo_logging::Stream &os, BlendingMode mode)
Definition blending.cpp:54
constexpr auto COLOR_PIXEL_ORDER_MSB_FIRST
Definition pixel_order.h:18