summaryrefslogtreecommitdiffstats
path: root/tests/manual/examples/opengl/computegles31/glwindow.h
blob: 268647a7aabbbef54aa2f27c1de8efa0066e39ec (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
54
55
56
57
58
59
60
61
62
63
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef GLWIDGET_H
#define GLWIDGET_H

#include <QOpenGLWindow>
#include <QOpenGLTexture>
#include <QMatrix4x4>
#include <QVector3D>
#include <QKeyEvent>
#include <QPropertyAnimation>
#include <QSequentialAnimationGroup>
#include <QRectF>

QT_BEGIN_NAMESPACE

class QOpenGLTexture;
class QOpenGLShaderProgram;
class QOpenGLBuffer;
class QOpenGLVertexArrayObject;

QT_END_NAMESPACE

class GLWindow : public QOpenGLWindow
{
    Q_OBJECT
    Q_PROPERTY(float blurRadius READ blurRadius WRITE setBlurRadius)

public:
    GLWindow();
    ~GLWindow();

    void initializeGL() override;
    void resizeGL(int w, int h) override;
    void paintGL() override;

    float blurRadius() const { return m_blurRadius; }
    void setBlurRadius(float blurRadius);

protected:
    void keyPressEvent(QKeyEvent *e) override;
    void setAnimating(bool animate);

private:
    QPropertyAnimation *m_animationForward = nullptr;
    QPropertyAnimation *m_animationBackward = nullptr;
    QSequentialAnimationGroup *m_animationGroup;
    QOpenGLTexture *m_texImageInput = nullptr;
    QOpenGLTexture *m_texImageTmp = nullptr;
    QOpenGLTexture *m_texImageProcessed = nullptr;
    QOpenGLShaderProgram *m_shaderDisplay = nullptr;
    QOpenGLShaderProgram *m_shaderComputeV = nullptr;
    QOpenGLShaderProgram *m_shaderComputeH = nullptr;
    QMatrix4x4 m_proj;
    QSizeF     m_quadSize;

    int m_blurRadius = 0;
    bool m_animate = true;
    QOpenGLVertexArrayObject *m_vao = nullptr;
};

#endif