12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef QT3DRENDER_QDITHERING_H
- #define QT3DRENDER_QDITHERING_H
- #include <Qt3DRender/qrenderstate.h>
- QT_BEGIN_NAMESPACE
- namespace Qt3DRender {
- class QDitheringPrivate;
- class QT3DRENDERSHARED_EXPORT QDithering : public QRenderState
- {
- Q_OBJECT
- public:
- explicit QDithering(Qt3DCore::QNode *parent = nullptr);
- ~QDithering();
- private:
- Q_DECLARE_PRIVATE(QDithering)
- };
- }
- QT_END_NAMESPACE
- #endif
|