#ifndef QCFOG_HPP #define QCFOG_HPP /** @author Harald Krippel */ #include #include class qcFog: public QObject { Q_OBJECT public: qcFog(QObject *parent=0); ~qcFog(); void on(); void off(); // Fog sgVec4 skyfogcol ; GLfloat fogdensity; GLfloat fogstart; GLfloat fogend; int fogmode; int foghint; public slots: void slot_update(float dt); void slot_preDraw(); void slot_postDraw(); private: int fogon; }; #endif