You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

openglrenderdevice.h 457B

1234567891011121314151617181920212223242526
  1. #ifndef OPENGLRENDERDEVICE_H
  2. #define OPENGLRENDERDEVICE_H
  3. #include "abstractrenderdevice.h"
  4. class OpenGLRenderDevice : public AbstractRenderDevice
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit OpenGLRenderDevice(QObject *parent = 0);
  9. signals:
  10. public slots:
  11. virtual void initialize(int fov, int width, int height);
  12. virtual void resize(int width, int height);
  13. virtual void preDraw();
  14. virtual void postDraw();
  15. };
  16. #endif // OPENGLRENDERDEVICE_H