Home
last modified time | relevance | path

Searched refs:QUANTIZE_WORD_MASK (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/effect/color_picker/src/
H A Dcolor_extract.cpp102 …(color >> (QUANTIZE_WORD_WIDTH + QUANTIZE_WORD_WIDTH)) & static_cast<uint32_t>(QUANTIZE_WORD_MASK); in QuantizedRed()
108 return (color >> QUANTIZE_WORD_WIDTH) & static_cast<uint32_t>(QUANTIZE_WORD_MASK); in QuantizedGreen()
114 return color & static_cast<uint32_t>(QUANTIZE_WORD_MASK); in QuantizedBlue()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_color_extract.cpp74 …(color >> (QUANTIZE_WORD_WIDTH + QUANTIZE_WORD_WIDTH)) & static_cast<uint32_t>(QUANTIZE_WORD_MASK); in QuantizedRed()
80 return (color >> QUANTIZE_WORD_WIDTH) & static_cast<uint32_t>(QUANTIZE_WORD_MASK); in QuantizedGreen()
86 return color & static_cast<uint32_t>(QUANTIZE_WORD_MASK); in QuantizedBlue()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
H A Drs_color_extract.h80 static constexpr int QUANTIZE_WORD_MASK = (1 << QUANTIZE_WORD_WIDTH) - 1; variable
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/effect/color_picker/include/
H A Dcolor_extract.h86 static constexpr int QUANTIZE_WORD_MASK = (1 << QUANTIZE_WORD_WIDTH) - 1; variable