summaryrefslogtreecommitdiffstats
path: root/examples/opengl/stereoqopenglwidget/glwidget.h
blob: 0014ee37c1b0a5923ac7ccd57ec7a263cdef4d7c (plain)
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
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef GLWIDGET_H
#define GLWIDGET_H

#include <QOpenGLWidget>
#include <QOpenGLFunctions>
#include <QOpenGLBuffer>
#include <QVector3D>
#include <QMatrix4x4>
#include <QElapsedTimer>
#include <QList>
#include <QPushButton>


QT_FORWARD_DECLARE_CLASS(QOpenGLTexture)
QT_FORWARD_DECLARE_CLASS(QOpenGLShader)
QT_FORWARD_DECLARE_CLASS(QOpenGLShaderProgram)

class GLWidget : public QOpenGLWidget, protected QOpenGLFunctions
{
    Q_OBJECT
public:
    GLWidget(const QColor &background);
    ~GLWidget();

    void saveImage(QOpenGLWidget::TargetBuffer targetBuffer);

protected:
    void paintGL() override;
    void initializeGL() override;

private:
    void createGeometry();
    void quad(qreal x1, qreal y1, qreal x2, qreal y2, qreal x3, qreal y3, qreal x4, qreal y4);
    void extrude(qreal x1, qreal y1, qreal x2, qreal y2);
    void reset();

    QList<QVector3D> m_vertices;
    QList<QVector3D> m_normals;
    QOpenGLShader *m_vshader = nullptr;
    QOpenGLShader *m_fshader = nullptr;
    QOpenGLShaderProgram *m_program = nullptr;
    QOpenGLBuffer m_vbo;
    int m_vertexAttr;
    int m_normalAttr;
    int m_matrixUniform;
    QColor m_background;
    QMetaObject::Connection m_contextWatchConnection;
};

#endif