簡(jiǎn)介
要學(xué)習(xí)OpenGL的話副编,強(qiáng)烈安利這個(gè)教程JoeyDeVries的learnopengl,這里是中文翻譯好的版本壳澳。教程中使用OpenGL是通過(guò)GLFW這個(gè)庫(kù)又谋,而在Qt中對(duì)OpenGL封裝得很好,并且和GUI以及IO相關(guān)的處理Qt更便捷妈踊,學(xué)習(xí)起來(lái)更輕松了嚎。這里就對(duì)每篇教程,在Qt在分別直接使用OpenGL的函數(shù)和Qt封裝好的類(lèi)以作對(duì)比廊营。
教程中使用的OpenGL版本為3.3歪泳,在Qt中需要使用此版本的OpenGL只需要繼承類(lèi)QOpenGLFunctions_3_3_Core
即可。如果為了在不同設(shè)備上都能用OpenGL的話露筒,Qt提供了類(lèi)QOpenGLFunctions
呐伞,這個(gè)類(lèi)包含了大部分公共的函數(shù),可能會(huì)有個(gè)別函數(shù)不能用慎式。
對(duì)比說(shuō)明
教程地址
原教程地址伶氢,相關(guān)知識(shí)可以點(diǎn)擊鏈接學(xué)習(xí)。
我的工程地址瘪吏,準(zhǔn)備后期每篇教程一個(gè)commit癣防,查看本篇代碼 git checkout v1.1
,喜歡就點(diǎn)個(gè)Star吧~
不同點(diǎn)
- 原教程關(guān)于ShaderProgram的讀取掌眠、鏈接很繁瑣蕾盯,后面教程還專(zhuān)門(mén)寫(xiě)了個(gè)類(lèi)
Shader
,這里我直接使用Qt封裝好的addShaderFromSourceFile
函數(shù)更方便蓝丙。 - Qt提供了
QOpenGLShaderProgram
级遭、QOpenGLVertexArrayObject
望拖、QOpenGLBuffer
這些類(lèi)來(lái)處理OpenGL中的program
、VAO
挫鸽、VBO
说敏。
運(yùn)行結(jié)果
運(yùn)行結(jié)果
使用OpenGL函數(shù)版
CoreFunctionWidget.h
#ifndef COREFUNCTIONWIDGET_H
#define COREFUNCTIONWIDGET_H
#include <QOpenGLWidget>
#include <QOpenGLExtraFunctions>
#include <QOpenGLFunctions_3_3_Core>
#include <QOpenGLShader>
#include <QOpenGLShaderProgram>
class CoreFunctionWidget : public QOpenGLWidget
, protected /*QOpenGLExtraFunctions*/QOpenGLFunctions_3_3_Core
{
Q_OBJECT
public:
explicit CoreFunctionWidget(QWidget *parent = nullptr);
~CoreFunctionWidget();
protected:
virtual void initializeGL();
virtual void resizeGL(int w, int h);
virtual void paintGL();
private:
QOpenGLShaderProgram shaderProgram;
};
#endif // COREFUNCTIONWIDGET_H
CoreFunctionWidget.cpp
#include "CoreFunctionWidget.h"
#include <QDebug>
#include <QFile>
static GLuint VBO, VAO, EBO;
CoreFunctionWidget::CoreFunctionWidget(QWidget *parent) : QOpenGLWidget(parent)
{
}
CoreFunctionWidget::~CoreFunctionWidget()
{
glDeleteVertexArrays(1, &VAO);
glDeleteBuffers(1, &VBO);
// glDeleteBuffers(1, &EBO);
}
void CoreFunctionWidget::initializeGL(){
this->initializeOpenGLFunctions();
bool success = shaderProgram.addShaderFromSourceFile(QOpenGLShader::Vertex, ":/triangle.vert");
if (!success) {
qDebug() << "shaderProgram addShaderFromSourceFile failed!" << shaderProgram.log();
return;
}
success = shaderProgram.addShaderFromSourceFile(QOpenGLShader::Fragment, ":/triangle.frag");
if (!success) {
qDebug() << "shaderProgram addShaderFromSourceFile failed!" << shaderProgram.log();
return;
}
success = shaderProgram.link();
if(!success) {
qDebug() << "shaderProgram link failed!" << shaderProgram.log();
}
//VAO,VBO數(shù)據(jù)部分
float vertices[] = {
0.5f, 0.5f, 0.0f, // top right
0.5f, -0.5f, 0.0f, // bottom right
-0.5f, -0.5f, 0.0f, // bottom left
-0.5f, 0.5f, 0.0f // top left
};
unsigned int indices[] = { // note that we start from 0!
0, 1, 3, // first Triangle
1, 2, 3 // second Triangle
};
glGenVertexArrays(1, &VAO);
glGenBuffers(1, &VBO);
glGenBuffers(1, &EBO);
// bind the Vertex Array Object first, then bind and set vertex buffer(s), and then configure vertex attributes(s).
glBindVertexArray(VAO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); //頂點(diǎn)數(shù)據(jù)復(fù)制到緩沖
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, EBO);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(GLfloat), (void*)0);//告訴程序如何解析頂點(diǎn)數(shù)據(jù)
glEnableVertexAttribArray(0);
glBindBuffer(GL_ARRAY_BUFFER, 0);//取消VBO的綁定, glVertexAttribPointer已經(jīng)把頂點(diǎn)屬性關(guān)聯(lián)到頂點(diǎn)緩沖對(duì)象了
// remember: do NOT unbind the EBO while a VAO is active as the bound element buffer object IS stored in the VAO; keep the EBO bound.
// glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
// You can unbind the VAO afterwards so other VAO calls won't accidentally modify this VAO, but this rarely happens. Modifying other
// VAOs requires a call to glBindVertexArray anyways so we generally don't unbind VAOs (nor VBOs) when it's not directly necessary.
glBindVertexArray(0); //取消VAO綁定
//線框模式掠兄,QOpenGLExtraFunctions沒(méi)這函數(shù), 3_3_Core有
// glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
}
void CoreFunctionWidget::resizeGL(int w, int h){
glViewport(0, 0, w, h);
}
void CoreFunctionWidget::paintGL(){
glClearColor(0.2f, 0.3f, 0.3f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT);
shaderProgram.bind();
glBindVertexArray(VAO); // seeing as we only have a single VAO there's no need to bind it every time, but we'll do so to keep things a bit more organized
// glDrawArrays(GL_TRIANGLES, 0, 6);
glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT, 0);
shaderProgram.release();
}
使用Qt相關(guān)函數(shù)版
QtFunctionWidget.h
#ifndef QTFUNCTIONWIDGET_H
#define QTFUNCTIONWIDGET_H
#include <QOpenGLWidget>
#include <QOpenGLWidget>
#include <QOpenGLShader>
#include <QOpenGLShaderProgram>
#include <QDebug>
#include <QOpenGLFunctions>
#include <QOpenGLVertexArrayObject>
#include <QOpenGLBuffer>
class QtFunctionWidget : public QOpenGLWidget, protected QOpenGLFunctions
{
public:
QtFunctionWidget(QWidget *parent = nullptr);
~QtFunctionWidget() Q_DECL_OVERRIDE;
protected:
virtual void initializeGL() Q_DECL_OVERRIDE;
virtual void resizeGL(int w, int h) Q_DECL_OVERRIDE;
virtual void paintGL() Q_DECL_OVERRIDE;
private:
QOpenGLShaderProgram shaderProgram;
QOpenGLBuffer vbo, ebo;
QOpenGLVertexArrayObject vao;
};
#endif // QTFUNCTIONWIDGET_H
QtFunctionWidget.cpp
#include "QtFunctionWidget.h"
#include <QFile>
QtFunctionWidget::QtFunctionWidget(QWidget *parent) : QOpenGLWidget (parent),
vbo(QOpenGLBuffer::VertexBuffer),
ebo(QOpenGLBuffer::IndexBuffer)
{
}
QtFunctionWidget::~QtFunctionWidget(){
makeCurrent();
vbo.destroy();
ebo.destroy();
vao.destroy();
doneCurrent();
}
void QtFunctionWidget::initializeGL(){
this->initializeOpenGLFunctions();
bool success = shaderProgram.addShaderFromSourceFile(QOpenGLShader::Vertex, ":/triangle.vert");
if (!success) {
qDebug() << "shaderProgram addShaderFromSourceFile failed!" << shaderProgram.log();
return;
}
success = shaderProgram.addShaderFromSourceFile(QOpenGLShader::Fragment, ":/triangle.frag");
if (!success) {
qDebug() << "shaderProgram addShaderFromSourceFile failed!" << shaderProgram.log();
return;
}
success = shaderProgram.link();
if(!success) {
qDebug() << "shaderProgram link failed!" << shaderProgram.log();
}
//VAO像云,VBO數(shù)據(jù)部分
GLfloat vertices[] = {
0.5f, 0.5f, 0.0f, // top right
0.5f, -0.5f, 0.0f, // bottom right
-0.5f, -0.5f, 0.0f, // bottom left
-0.5f, 0.5f, 0.0f // top left
};
unsigned int indices[] = { // note that we start from 0!
0, 1, 3, // first Triangle
1, 2, 3 // second Triangle
};
QOpenGLVertexArrayObject::Binder vaoBind(&vao);
vbo.create();
vbo.bind();
vbo.allocate(vertices, sizeof(vertices));
ebo.create();
ebo.bind();
ebo.allocate(indices, sizeof(indices));
int attr = -1;
attr = shaderProgram.attributeLocation("aPos");
shaderProgram.setAttributeBuffer(attr, GL_FLOAT, 0, 3, sizeof(GLfloat) * 3);
shaderProgram.enableAttributeArray(attr);
vbo.release();
// remember: do NOT unbind the EBO while a VAO is active as the bound element buffer object IS stored in the VAO; keep the EBO bound.
// ebo.release();
}
void QtFunctionWidget::resizeGL(int w, int h){
glViewport(0, 0, w, h);
}
void QtFunctionWidget::paintGL(){
glClearColor(0.2f, 0.3f, 0.3f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT);
shaderProgram.bind();
{
QOpenGLVertexArrayObject::Binder vaoBind(&vao);
glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT, 0);
}
shaderProgram.release();
}
GLSL
triangle.vert
#version 330 core
layout(location = 0) in vec3 aPos;
void main(){
gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0f);
}
triangle.frag
#version 330 core
out vec4 FragColor;
void main(){
FragColor = vec4(1.0f, 0.5f, 0.2f, 1.0f);
}
main.cpp
#include <QApplication>
#include "MainWindow.h"
#include "QtFunctionWidget.h"
#include "CoreFunctionWidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
// MainWindow w;
QtFunctionWidget w1;
CoreFunctionWidget w2;
w1.setWindowTitle(QObject::tr("QtFunction"));
w2.setWindowTitle(QObject::tr("CoreFunction"));
w1.show();
w2.show();
return a.exec();
}