Qt 4.8
Classes | Functions
qplatformwindowformat_qpa.h File Reference
#include <QtGui/QPlatformWindow>

Go to the source code of this file.

Classes

class  QPlatformWindowFormat
 The QPlatformWindowFormat class specifies the display format of an OpenGL rendering context and if possible attributes of the corresponding QPlatformWindow. More...
 

Functions

Q_GUI_EXPORT bool operator!= (const QPlatformWindowFormat &, const QPlatformWindowFormat &)
 
Q_OPENGL_EXPORT QDebug operator<< (QDebug, const QPlatformWindowFormat &)
 
Q_GUI_EXPORT bool operator== (const QPlatformWindowFormat &, const QPlatformWindowFormat &)
 

Function Documentation

◆ operator!=()

Q_GUI_EXPORT bool operator!= ( const QPlatformWindowFormat ,
const QPlatformWindowFormat  
)

◆ operator<<()

Q_OPENGL_EXPORT QDebug operator<< ( QDebug  ,
const QPlatformWindowFormat  
)

Definition at line 1042 of file qplatformwindowformat_qpa.cpp.

1043 {
1044  const QPlatformWindowFormatPrivate * const d = f.d;
1045 
1046  dbg.nospace() << "QGLFormat("
1047  << "options " << d->opts
1048  << ", depthBufferSize " << d->depthSize
1049  << ", accumBufferSize " << d->accumSize
1050  << ", stencilBufferSize " << d->stencilSize
1051  << ", redBufferSize " << d->redSize
1052  << ", greenBufferSize " << d->greenSize
1053  << ", blueBufferSize " << d->blueSize
1054  << ", alphaBufferSize " << d->alphaSize
1055  << ", samples " << d->numSamples
1056  << ", swapInterval " << d->swapInterval
1057  << ')';
1058 
1059  return dbg.space();
1060 }
double d
Definition: qnumeric_p.h:62
QPlatformWindowFormat::FormatOptions opts

◆ operator==()

Q_GUI_EXPORT bool operator== ( const QPlatformWindowFormat ,
const QPlatformWindowFormat  
)