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 73 of file KoColorProfileQuery.h.

73 {
74 QDebugStateSaver saver(debug);
75 debug.nospace() << "KoColorProfileQuery("
76 << " WhitePoint:" << value.whitePoint
77 << " rgbColorants:" << value.rgbColorants
78 << " primariesType:" << value.primaries
79 << " transferFunction:" << value.transfer
80 << " isGreyscale:" << value.isGrayscale()
81 << " isRgb:" << value.isRgb()
82 << " isValid:" << value.isValid()
83 << ")";
84 return debug;
85}
float value(const T *src, size_t ch)
PyObject * debug(PyObject *, PyObject *args)

References value().