qpixelformat.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QPIXELFORMAT_H
  40. #define QPIXELFORMAT_H
  41. #include <QtCore/qglobal.h>
  42. QT_BEGIN_NAMESPACE
  43. class QPixelFormat
  44. {
  45. // QPixelFormat basically is a glorified quint64, split into several fields.
  46. // We could use bit-fields, but GCC at least generates horrible, horrible code for them,
  47. // so we do the bit-twiddling ourselves.
  48. enum FieldWidth {
  49. ModelFieldWidth = 4,
  50. FirstFieldWidth = 6,
  51. SecondFieldWidth = FirstFieldWidth,
  52. ThirdFieldWidth = FirstFieldWidth,
  53. FourthFieldWidth = FirstFieldWidth,
  54. FifthFieldWidth = FirstFieldWidth,
  55. AlphaFieldWidth = FirstFieldWidth,
  56. AlphaUsageFieldWidth = 1,
  57. AlphaPositionFieldWidth = 1,
  58. PremulFieldWidth = 1,
  59. TypeInterpretationFieldWidth = 4,
  60. ByteOrderFieldWidth = 2,
  61. SubEnumFieldWidth = 6,
  62. UnusedFieldWidth = 9,
  63. TotalFieldWidthByWidths = ModelFieldWidth + FirstFieldWidth + SecondFieldWidth + ThirdFieldWidth +
  64. FourthFieldWidth + FifthFieldWidth + AlphaFieldWidth + AlphaUsageFieldWidth +
  65. AlphaPositionFieldWidth + PremulFieldWidth + TypeInterpretationFieldWidth +
  66. ByteOrderFieldWidth + SubEnumFieldWidth + UnusedFieldWidth
  67. };
  68. enum Field {
  69. ModelField = 0,
  70. // work around bug in old clang versions: when building webkit
  71. // with XCode 4.6 and older this fails compilation, thus cast to int
  72. FirstField = ModelField + int(ModelFieldWidth),
  73. SecondField = FirstField + FirstFieldWidth,
  74. ThirdField = SecondField + SecondFieldWidth,
  75. FourthField = ThirdField + ThirdFieldWidth,
  76. FifthField = FourthField + FourthFieldWidth,
  77. AlphaField = FifthField + FifthFieldWidth,
  78. AlphaUsageField = AlphaField + AlphaFieldWidth,
  79. AlphaPositionField = AlphaUsageField + AlphaUsageFieldWidth,
  80. PremulField = AlphaPositionField + AlphaPositionFieldWidth,
  81. TypeInterpretationField = PremulField + PremulFieldWidth,
  82. ByteOrderField = TypeInterpretationField + TypeInterpretationFieldWidth,
  83. SubEnumField = ByteOrderField + ByteOrderFieldWidth,
  84. UnusedField = SubEnumField + SubEnumFieldWidth,
  85. TotalFieldWidthByOffsets = UnusedField + UnusedFieldWidth
  86. };
  87. Q_STATIC_ASSERT(uint(TotalFieldWidthByWidths) == uint(TotalFieldWidthByOffsets));
  88. Q_STATIC_ASSERT(uint(TotalFieldWidthByWidths) == 8 * sizeof(quint64));
  89. Q_DECL_CONSTEXPR inline uchar get(Field offset, FieldWidth width) const Q_DECL_NOTHROW
  90. { return uchar((data >> uint(offset)) & ((Q_UINT64_C(1) << uint(width)) - Q_UINT64_C(1))); }
  91. Q_DECL_CONSTEXPR static inline quint64 set(Field offset, FieldWidth width, uchar value)
  92. { return (quint64(value) & ((Q_UINT64_C(1) << uint(width)) - Q_UINT64_C(1))) << uint(offset); }
  93. public:
  94. enum ColorModel {
  95. RGB,
  96. BGR,
  97. Indexed,
  98. Grayscale,
  99. CMYK,
  100. HSL,
  101. HSV,
  102. YUV,
  103. Alpha
  104. };
  105. enum AlphaUsage {
  106. UsesAlpha,
  107. IgnoresAlpha
  108. };
  109. enum AlphaPosition {
  110. AtBeginning,
  111. AtEnd
  112. };
  113. enum AlphaPremultiplied {
  114. NotPremultiplied,
  115. Premultiplied
  116. };
  117. enum TypeInterpretation {
  118. UnsignedInteger,
  119. UnsignedShort,
  120. UnsignedByte,
  121. FloatingPoint
  122. };
  123. enum YUVLayout {
  124. YUV444,
  125. YUV422,
  126. YUV411,
  127. YUV420P,
  128. YUV420SP,
  129. YV12,
  130. UYVY,
  131. YUYV,
  132. NV12,
  133. NV21,
  134. IMC1,
  135. IMC2,
  136. IMC3,
  137. IMC4,
  138. Y8,
  139. Y16
  140. };
  141. enum ByteOrder {
  142. LittleEndian,
  143. BigEndian,
  144. CurrentSystemEndian
  145. };
  146. Q_DECL_CONSTEXPR inline QPixelFormat() Q_DECL_NOTHROW : data(0) {}
  147. Q_DECL_CONSTEXPR inline QPixelFormat(ColorModel colorModel,
  148. uchar firstSize,
  149. uchar secondSize,
  150. uchar thirdSize,
  151. uchar fourthSize,
  152. uchar fifthSize,
  153. uchar alphaSize,
  154. AlphaUsage alphaUsage,
  155. AlphaPosition alphaPosition,
  156. AlphaPremultiplied premultiplied,
  157. TypeInterpretation typeInterpretation,
  158. ByteOrder byteOrder = CurrentSystemEndian,
  159. uchar subEnum = 0) Q_DECL_NOTHROW;
  160. Q_DECL_CONSTEXPR inline ColorModel colorModel() const Q_DECL_NOTHROW { return ColorModel(get(ModelField, ModelFieldWidth)); }
  161. Q_DECL_CONSTEXPR inline uchar channelCount() const Q_DECL_NOTHROW { return (get(FirstField, FirstFieldWidth) > 0) +
  162. (get(SecondField, SecondFieldWidth) > 0) +
  163. (get(ThirdField, ThirdFieldWidth) > 0) +
  164. (get(FourthField, FourthFieldWidth) > 0) +
  165. (get(FifthField, FifthFieldWidth) > 0) +
  166. (get(AlphaField, AlphaFieldWidth) > 0); }
  167. Q_DECL_CONSTEXPR inline uchar redSize() const Q_DECL_NOTHROW { return get(FirstField, FirstFieldWidth); }
  168. Q_DECL_CONSTEXPR inline uchar greenSize() const Q_DECL_NOTHROW { return get(SecondField, SecondFieldWidth); }
  169. Q_DECL_CONSTEXPR inline uchar blueSize() const Q_DECL_NOTHROW { return get(ThirdField, ThirdFieldWidth); }
  170. Q_DECL_CONSTEXPR inline uchar cyanSize() const Q_DECL_NOTHROW { return get(FirstField, FirstFieldWidth); }
  171. Q_DECL_CONSTEXPR inline uchar magentaSize() const Q_DECL_NOTHROW { return get(SecondField, SecondFieldWidth); }
  172. Q_DECL_CONSTEXPR inline uchar yellowSize() const Q_DECL_NOTHROW { return get(ThirdField, ThirdFieldWidth); }
  173. Q_DECL_CONSTEXPR inline uchar blackSize() const Q_DECL_NOTHROW { return get(FourthField, FourthFieldWidth); }
  174. Q_DECL_CONSTEXPR inline uchar hueSize() const Q_DECL_NOTHROW { return get(FirstField, FirstFieldWidth); }
  175. Q_DECL_CONSTEXPR inline uchar saturationSize() const Q_DECL_NOTHROW { return get(SecondField, SecondFieldWidth); }
  176. Q_DECL_CONSTEXPR inline uchar lightnessSize() const Q_DECL_NOTHROW { return get(ThirdField, ThirdFieldWidth); }
  177. Q_DECL_CONSTEXPR inline uchar brightnessSize() const Q_DECL_NOTHROW { return get(ThirdField, ThirdFieldWidth); }
  178. Q_DECL_CONSTEXPR inline uchar alphaSize() const Q_DECL_NOTHROW { return get(AlphaField, AlphaFieldWidth); }
  179. Q_DECL_CONSTEXPR inline uchar bitsPerPixel() const Q_DECL_NOTHROW { return get(FirstField, FirstFieldWidth) +
  180. get(SecondField, SecondFieldWidth) +
  181. get(ThirdField, ThirdFieldWidth) +
  182. get(FourthField, FourthFieldWidth) +
  183. get(FifthField, FifthFieldWidth) +
  184. get(AlphaField, AlphaFieldWidth); }
  185. Q_DECL_CONSTEXPR inline AlphaUsage alphaUsage() const Q_DECL_NOTHROW { return AlphaUsage(get(AlphaUsageField, AlphaUsageFieldWidth)); }
  186. Q_DECL_CONSTEXPR inline AlphaPosition alphaPosition() const Q_DECL_NOTHROW { return AlphaPosition(get(AlphaPositionField, AlphaPositionFieldWidth)); }
  187. Q_DECL_CONSTEXPR inline AlphaPremultiplied premultiplied() const Q_DECL_NOTHROW { return AlphaPremultiplied(get(PremulField, PremulFieldWidth)); }
  188. Q_DECL_CONSTEXPR inline TypeInterpretation typeInterpretation() const Q_DECL_NOTHROW { return TypeInterpretation(get(TypeInterpretationField, TypeInterpretationFieldWidth)); }
  189. Q_DECL_CONSTEXPR inline ByteOrder byteOrder() const Q_DECL_NOTHROW { return ByteOrder(get(ByteOrderField, ByteOrderFieldWidth)); }
  190. Q_DECL_CONSTEXPR inline YUVLayout yuvLayout() const Q_DECL_NOTHROW { return YUVLayout(get(SubEnumField, SubEnumFieldWidth)); }
  191. Q_DECL_CONSTEXPR inline uchar subEnum() const Q_DECL_NOTHROW { return get(SubEnumField, SubEnumFieldWidth); }
  192. private:
  193. Q_DECL_CONSTEXPR static inline ByteOrder resolveByteOrder(ByteOrder bo)
  194. { return bo == CurrentSystemEndian ? Q_BYTE_ORDER == Q_LITTLE_ENDIAN ? LittleEndian : BigEndian : bo ; }
  195. private:
  196. quint64 data;
  197. friend Q_DECL_CONST_FUNCTION Q_DECL_CONSTEXPR inline bool operator==(QPixelFormat fmt1, QPixelFormat fmt2)
  198. { return fmt1.data == fmt2.data; }
  199. friend Q_DECL_CONST_FUNCTION Q_DECL_CONSTEXPR inline bool operator!=(QPixelFormat fmt1, QPixelFormat fmt2)
  200. { return !(fmt1 == fmt2); }
  201. };
  202. Q_STATIC_ASSERT(sizeof(QPixelFormat) == sizeof(quint64));
  203. Q_DECLARE_TYPEINFO(QPixelFormat, Q_PRIMITIVE_TYPE);
  204. namespace QtPrivate {
  205. QPixelFormat Q_GUI_EXPORT QPixelFormat_createYUV(QPixelFormat::YUVLayout yuvLayout,
  206. uchar alphaSize,
  207. QPixelFormat::AlphaUsage alphaUsage,
  208. QPixelFormat::AlphaPosition alphaPosition,
  209. QPixelFormat::AlphaPremultiplied premultiplied,
  210. QPixelFormat::TypeInterpretation typeInterpretation,
  211. QPixelFormat::ByteOrder byteOrder);
  212. }
  213. Q_DECL_CONSTEXPR
  214. QPixelFormat::QPixelFormat(ColorModel mdl,
  215. uchar firstSize,
  216. uchar secondSize,
  217. uchar thirdSize,
  218. uchar fourthSize,
  219. uchar fifthSize,
  220. uchar alfa,
  221. AlphaUsage usage,
  222. AlphaPosition position,
  223. AlphaPremultiplied premult,
  224. TypeInterpretation typeInterp,
  225. ByteOrder b_order,
  226. uchar s_enum) Q_DECL_NOTHROW
  227. : data(set(ModelField, ModelFieldWidth, uchar(mdl)) |
  228. set(FirstField, FirstFieldWidth, firstSize) |
  229. set(SecondField, SecondFieldWidth, secondSize) |
  230. set(ThirdField, ThirdFieldWidth, thirdSize) |
  231. set(FourthField, FourthFieldWidth, fourthSize) |
  232. set(FifthField, FifthFieldWidth, fifthSize) |
  233. set(AlphaField, AlphaFieldWidth, alfa) |
  234. set(AlphaUsageField, AlphaUsageFieldWidth, uchar(usage)) |
  235. set(AlphaPositionField, AlphaPositionFieldWidth, uchar(position)) |
  236. set(PremulField, PremulFieldWidth, uchar(premult)) |
  237. set(TypeInterpretationField, TypeInterpretationFieldWidth, uchar(typeInterp)) |
  238. set(ByteOrderField, ByteOrderFieldWidth, uchar(resolveByteOrder(b_order))) |
  239. set(SubEnumField, SubEnumFieldWidth, s_enum) |
  240. set(UnusedField, UnusedFieldWidth, 0))
  241. {
  242. }
  243. Q_DECL_CONSTEXPR inline QPixelFormat qPixelFormatRgba(uchar red,
  244. uchar green,
  245. uchar blue,
  246. uchar alfa,
  247. QPixelFormat::AlphaUsage usage,
  248. QPixelFormat::AlphaPosition position,
  249. QPixelFormat::AlphaPremultiplied pmul=QPixelFormat::NotPremultiplied,
  250. QPixelFormat::TypeInterpretation typeInt=QPixelFormat::UnsignedInteger) Q_DECL_NOTHROW
  251. {
  252. return QPixelFormat(QPixelFormat::RGB,
  253. red,
  254. green,
  255. blue,
  256. 0,
  257. 0,
  258. alfa,
  259. usage,
  260. position,
  261. pmul,
  262. typeInt);
  263. }
  264. Q_DECL_CONSTEXPR inline QPixelFormat qPixelFormatGrayscale(uchar channelSize,
  265. QPixelFormat::TypeInterpretation typeInt=QPixelFormat::UnsignedInteger) Q_DECL_NOTHROW
  266. {
  267. return QPixelFormat(QPixelFormat::Grayscale,
  268. channelSize,
  269. 0,
  270. 0,
  271. 0,
  272. 0,
  273. 0,
  274. QPixelFormat::IgnoresAlpha,
  275. QPixelFormat::AtBeginning,
  276. QPixelFormat::NotPremultiplied,
  277. typeInt);
  278. }
  279. Q_DECL_CONSTEXPR inline QPixelFormat qPixelFormatAlpha(uchar channelSize,
  280. QPixelFormat::TypeInterpretation typeInt=QPixelFormat::UnsignedInteger) Q_DECL_NOTHROW
  281. {
  282. return QPixelFormat(QPixelFormat::Alpha,
  283. 0,
  284. 0,
  285. 0,
  286. 0,
  287. 0,
  288. channelSize,
  289. QPixelFormat::UsesAlpha,
  290. QPixelFormat::AtBeginning,
  291. QPixelFormat::NotPremultiplied,
  292. typeInt);
  293. }
  294. Q_DECL_CONSTEXPR inline QPixelFormat qPixelFormatCmyk(uchar channelSize,
  295. uchar alfa=0,
  296. QPixelFormat::AlphaUsage usage=QPixelFormat::IgnoresAlpha,
  297. QPixelFormat::AlphaPosition position=QPixelFormat::AtBeginning,
  298. QPixelFormat::TypeInterpretation typeInt=QPixelFormat::UnsignedInteger) Q_DECL_NOTHROW
  299. {
  300. return QPixelFormat(QPixelFormat::CMYK,
  301. channelSize,
  302. channelSize,
  303. channelSize,
  304. channelSize,
  305. 0,
  306. alfa,
  307. usage,
  308. position,
  309. QPixelFormat::NotPremultiplied,
  310. typeInt);
  311. }
  312. Q_DECL_CONSTEXPR inline QPixelFormat qPixelFormatHsl(uchar channelSize,
  313. uchar alfa=0,
  314. QPixelFormat::AlphaUsage usage=QPixelFormat::IgnoresAlpha,
  315. QPixelFormat::AlphaPosition position=QPixelFormat::AtBeginning,
  316. QPixelFormat::TypeInterpretation typeInt=QPixelFormat::FloatingPoint) Q_DECL_NOTHROW
  317. {
  318. return QPixelFormat(QPixelFormat::HSL,
  319. channelSize,
  320. channelSize,
  321. channelSize,
  322. 0,
  323. 0,
  324. alfa,
  325. usage,
  326. position,
  327. QPixelFormat::NotPremultiplied,
  328. typeInt);
  329. }
  330. Q_DECL_CONSTEXPR inline QPixelFormat qPixelFormatHsv(uchar channelSize,
  331. uchar alfa=0,
  332. QPixelFormat::AlphaUsage usage=QPixelFormat::IgnoresAlpha,
  333. QPixelFormat::AlphaPosition position=QPixelFormat::AtBeginning,
  334. QPixelFormat::TypeInterpretation typeInt=QPixelFormat::FloatingPoint) Q_DECL_NOTHROW
  335. {
  336. return QPixelFormat(QPixelFormat::HSV,
  337. channelSize,
  338. channelSize,
  339. channelSize,
  340. 0,
  341. 0,
  342. alfa,
  343. usage,
  344. position,
  345. QPixelFormat::NotPremultiplied,
  346. typeInt);
  347. }
  348. inline QPixelFormat qPixelFormatYuv(QPixelFormat::YUVLayout layout,
  349. uchar alfa=0,
  350. QPixelFormat::AlphaUsage usage=QPixelFormat::IgnoresAlpha,
  351. QPixelFormat::AlphaPosition position=QPixelFormat::AtBeginning,
  352. QPixelFormat::AlphaPremultiplied p_mul=QPixelFormat::NotPremultiplied,
  353. QPixelFormat::TypeInterpretation typeInt=QPixelFormat::UnsignedByte,
  354. QPixelFormat::ByteOrder b_order=QPixelFormat::LittleEndian)
  355. {
  356. return QtPrivate::QPixelFormat_createYUV(layout,
  357. alfa,
  358. usage,
  359. position,
  360. p_mul,
  361. typeInt,
  362. b_order);
  363. }
  364. QT_END_NAMESPACE
  365. #endif //QPIXELFORMAT_H