src/gl/gridprogram.h

changeset 53
3af627f7a40f
child 55
cb81ecb5fb23
equal deleted inserted replaced
52:eee644f88e93 53:3af627f7a40f
1 /*
2 * LDForge: LDraw parts authoring CAD
3 * Copyright (C) 2020 Teemu Piippo
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #pragma once
20 #include "common.h"
21
22 class GridProgram : public QObject, protected QOpenGLFunctions
23 {
24 Q_OBJECT
25 public:
26 GridProgram(QObject* parent = nullptr);
27 GridProgram(const GridProgram&) = delete;
28 GridProgram(GridProgram&&) = delete;
29 ~GridProgram() = default;
30 void initialize();
31 void setViewMatrix(const glm::mat4& newViewMatrix);
32 void setProjectionMatrix(const glm::mat4& newProjectionMatrix);
33 void setModelMatrix(const glm::mat4& newModelMatrix);
34 void operator=(GridProgram) = delete;
35 void draw();
36 void teardown();
37 private:
38 void checkForGLErrors();
39 bool isInitialized = false;
40 QOpenGLBuffer buffer;
41 QOpenGLShader vertexShader;
42 QOpenGLShader fragmentShader;
43 std::optional<gl::ShaderProgram> program{std::nullopt};
44 QOpenGLVertexArrayObject vertexArrayObject;
45 };

mercurial