-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainOpenGLWidget.h
57 lines (43 loc) · 1.25 KB
/
MainOpenGLWidget.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef MAINOPENGLWIDGET_H
#define MAINOPENGLWIDGET_H
#include <QOpenGLWidget>
#include <QOpenGLFunctions>
#include <QSurfaceFormat>
#include <QOpenGLShaderProgram>
#include <QOpenGLFunctions_3_2_Core>
#include <QMatrix4x4>
#include <QDebug>
#include <QFileInfo>
#include <QMouseEvent>
#include <QtMath>
#include "Mesh.h"
#include "SubdivisionController.h"
class MainOpenGLWidget : public QOpenGLWidget, protected QOpenGLFunctions
{
public:
QMatrix4x4 m_projection;
MainOpenGLWidget(QWidget *parent);
void update();
QSize sizeHint() const Q_DECL_OVERRIDE;
protected:
void initializeGL() override;
void resizeGL(int w, int h) override;
void paintGL() override;
void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
void mouseMoveEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
void wheelEvent(QWheelEvent* event) Q_DECL_OVERRIDE;
GLuint m_posAttr;
GLuint m_colAttr;
GLuint m_normalAttr;
GLuint m_matrixUniform;
GLuint m_tintUniform;
QOpenGLShaderProgram *m_program;
QVector3D m_eye;
QVector3D m_forward;
QMatrix4x4 m_view;
int m_mouseX = -1;
int m_mouseY = -1;
int m_width, m_height;
};
#endif // MAINOPENGLWIDGET_H