Krita Source Code Documentation
Loading...
Searching...
No Matches
KoColorProfileQuery.h File Reference
#include <KoColorimetryUtils.h>
#include <KoColorProfileConstants.h>
#include <QDebug>

Go to the source code of this file.

Classes

struct  KoColorProfileQuery
 The KoColorProfileQuery struct. More...
 

Functions

QDebug operator<< (QDebug debug, const KoColorProfileQuery &value)
 

Function Documentation

◆ operator<<()

QDebug operator<< ( QDebug debug,
const KoColorProfileQuery & value )
inline

Definition at line 49 of file KoColorProfileQuery.h.

49 {
50 QDebugStateSaver saver(debug);
51 debug.nospace() << "KoColorProfileQuery("
52 << " WhitePoint:" << value.whitePoint
53 << " rgbColorants:" << value.rgbColorants
54 << " primariesType:" << value.primaries
55 << " transferFunction:" << value.transfer
56 << " isGreyscale:" << value.isGrayscale()
57 << " isRgb:" << value.isRgb()
58 << " isValid:" << value.isValid()
59 << ")";
60 return debug;
61}
float value(const T *src, size_t ch)
PyObject * debug(PyObject *, PyObject *args)

References value().