Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qrgb.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QRGB_H
5#define QRGB_H
6
7#include <QtGui/qtguiglobal.h>
8#include <QtCore/qprocessordetection.h>
9
11
12
13typedef unsigned int QRgb; // RGB triplet
14
15// non-namespaced Qt global variable
16 inline constexpr QRgb RGB_MASK = 0x00ffffff; // masks RGB values
17
18inline constexpr int qRed(QRgb rgb) // get red part of RGB
19{ return ((rgb >> 16) & 0xff); }
20
21inline constexpr int qGreen(QRgb rgb) // get green part of RGB
22{ return ((rgb >> 8) & 0xff); }
23
24inline constexpr int qBlue(QRgb rgb) // get blue part of RGB
25{ return (rgb & 0xff); }
26
27inline constexpr int qAlpha(QRgb rgb) // get alpha part of RGBA
28{ return rgb >> 24; }
29
30inline constexpr QRgb qRgb(int r, int g, int b) // set RGB value
31{ return (0xffu << 24) | ((r & 0xffu) << 16) | ((g & 0xffu) << 8) | (b & 0xffu); }
32
33inline constexpr QRgb qRgba(int r, int g, int b, int a) // set RGBA value
34{ return ((a & 0xffu) << 24) | ((r & 0xffu) << 16) | ((g & 0xffu) << 8) | (b & 0xffu); }
35
36inline constexpr int qGray(int r, int g, int b) // convert R,G,B to gray 0..255
37{ return (r*11+g*16+b*5)/32; }
38
39inline constexpr int qGray(QRgb rgb) // convert RGB to gray 0..255
40{ return qGray(qRed(rgb), qGreen(rgb), qBlue(rgb)); }
41
42inline constexpr bool qIsGray(QRgb rgb)
43{ return qRed(rgb) == qGreen(rgb) && qRed(rgb) == qBlue(rgb); }
44
45inline constexpr QRgb qPremultiply(QRgb x)
46{
47 const uint a = qAlpha(x);
48 uint t = (x & 0xff00ff) * a;
49 t = (t + ((t >> 8) & 0xff00ff) + 0x800080) >> 8;
50 t &= 0xff00ff;
51
52 x = ((x >> 8) & 0xff) * a;
53 x = (x + ((x >> 8) & 0xff) + 0x80);
54 x &= 0xff00;
55 return x | t | (a << 24);
56}
57
58Q_GUI_EXPORT extern const uint qt_inv_premul_factor[];
59
61{
62 const uint alpha = qAlpha(p);
63 // Alpha 255 and 0 are the two most common values, which makes them beneficial to short-cut.
64 if (alpha == 255)
65 return p;
66 if (alpha == 0)
67 return 0;
68 // (p*(0x00ff00ff/alpha)) >> 16 == (p*255)/alpha for all p and alpha <= 256.
69 const uint invAlpha = qt_inv_premul_factor[alpha];
70 // We add 0x8000 to get even rounding. The rounding also ensures that qPremultiply(qUnpremultiply(p)) == p for all p.
71 return qRgba((qRed(p)*invAlpha + 0x8000)>>16, (qGreen(p)*invAlpha + 0x8000)>>16, (qBlue(p)*invAlpha + 0x8000)>>16, alpha);
72}
73
75
76#endif // QRGB_H
Combined button and popup list for selecting options.
#define rgb(r, g, b)
Definition qcolor.cpp:124
GLboolean GLboolean GLboolean b
GLint GLint GLint GLint GLint x
[0]
GLboolean GLboolean GLboolean GLboolean a
[7]
GLboolean r
[2]
GLboolean GLboolean g
GLdouble GLdouble t
Definition qopenglext.h:243
GLfloat GLfloat p
[1]
GLfloat GLfloat GLfloat alpha
Definition qopenglext.h:418
constexpr bool qIsGray(QRgb rgb)
Definition qrgb.h:42
QT_BEGIN_NAMESPACE typedef unsigned int QRgb
Definition qrgb.h:13
constexpr QRgb qRgb(int r, int g, int b)
Definition qrgb.h:30
constexpr int qRed(QRgb rgb)
Definition qrgb.h:18
constexpr int qGreen(QRgb rgb)
Definition qrgb.h:21
constexpr int qGray(int r, int g, int b)
Definition qrgb.h:36
QRgb qUnpremultiply(QRgb p)
Definition qrgb.h:60
constexpr QRgb qRgba(int r, int g, int b, int a)
Definition qrgb.h:33
constexpr int qBlue(QRgb rgb)
Definition qrgb.h:24
constexpr QRgb RGB_MASK
Definition qrgb.h:16
constexpr QRgb qPremultiply(QRgb x)
Definition qrgb.h:45
constexpr int qAlpha(QRgb rgb)
Definition qrgb.h:27
Q_GUI_EXPORT const uint qt_inv_premul_factor[]
Definition qcolor.cpp:3049
unsigned int uint
Definition qtypes.h:34