35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
#ifndef DUST3D_APPLICATION_MODEL_OFFSCREEN_RENDER_H_
|
|
#define DUST3D_APPLICATION_MODEL_OFFSCREEN_RENDER_H_
|
|
|
|
#include "model_mesh.h"
|
|
#include <QOffscreenSurface>
|
|
#include <QOpenGLFramebufferObject>
|
|
#include <QSurfaceFormat>
|
|
#include <QVector3D>
|
|
|
|
class ModelOffscreenRender : public QOffscreenSurface {
|
|
public:
|
|
ModelOffscreenRender(const QSurfaceFormat& format, QScreen* targetScreen = Q_NULLPTR);
|
|
~ModelOffscreenRender();
|
|
void setXRotation(int angle);
|
|
void setYRotation(int angle);
|
|
void setZRotation(int angle);
|
|
void setEyePosition(const QVector3D& eyePosition);
|
|
void setMoveToPosition(const QVector3D& moveToPosition);
|
|
void setRenderThread(QThread* thread);
|
|
void updateMesh(ModelMesh* mesh);
|
|
QImage toImage(const QSize& size);
|
|
|
|
private:
|
|
int m_xRot = 0;
|
|
int m_yRot = 0;
|
|
int m_zRot = 0;
|
|
QVector3D m_eyePosition;
|
|
QVector3D m_moveToPosition;
|
|
QOpenGLContext* m_context = nullptr;
|
|
QOpenGLFramebufferObject* m_renderFbo = nullptr;
|
|
ModelMesh* m_mesh = nullptr;
|
|
};
|
|
|
|
#endif
|