重要的话写在前面~~通过今晚的实验,知道了EBO是不能随便release的~~~一直不要release就可以了,否则vao会失效

Display.h

#ifndef DISPLAYWIDGET_H
#define DISPLAYWIDGET_H #include <QGLWidget> #include <QOpenGLFunctions>
#include <QOpenGLBuffer>
#include <QOpenGLVertexArrayObject>
#include <QOpenGLShaderProgram>
#include <QOpenGLVertexArrayObject>
#include <QOpenGLTexture> class DisplayGLWidget:public QGLWidget,protected QOpenGLFunctions
{
Q_OBJECT
public:
DisplayGLWidget(QWidget *parent = );
~DisplayGLWidget(); void teardownGL();
public slots:
//void CompileAndLinkVertexShader(const QString& shaderText);
//void CompileAndLinkFragmentShader(const QString& shaderText); protected: void initializeGL() ;
void paintGL() ;
void resizeGL(int width, int height) ; //void keyPressEvent(QKeyEvent *event) override;
void mousePressEvent(QMouseEvent *event) override;
void mouseMoveEvent(QMouseEvent *event) override; private:
QOpenGLBuffer m_vbo;
QOpenGLBuffer m_ebo;
QOpenGLVertexArrayObject m_vao;
QOpenGLShaderProgram *m_program;
QOpenGLTexture *texture; void printVersionInformation(); void initTextures(); }; #endif

Display.cpp

#include "DisplayGLWidget.h"
#include "Vertex.h" #include <QDebug>
#include <iostream> // Create a colored triangle
static const Vertex sg_vertexes[] = {
Vertex( QVector3D( 0.00f, 0.75f, 1.0f), QVector3D(1.0f, 0.0f, 0.0f) ),
Vertex( QVector3D( 0.75f, -0.75f, 1.0f), QVector3D(0.0f, 1.0f, 0.0f) ),
Vertex( QVector3D(-0.75f, -0.75f, 1.0f), QVector3D(0.0f, 0.0f, 1.0f) )
}; static const GLfloat vertices[] = {
// Positions // Colors // Texture Coords
0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, // Top Right
0.5f, -0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, // Bottom Right
-0.5f, -0.5f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, // Bottom Left
-0.5f, 0.5f, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f // Top Left
}; static const GLfloat vertices1[] =
{
-0.5f, 0.5f, 0.0f, // Top Left
-0.5f,0.0f, 0.0f,
0.0f, 0.5f, 0.0f
}; static const GLuint indices[] = { // Note that we start from 0!
, , , // First Triangle
, , // Second Triangle
}; DisplayGLWidget::DisplayGLWidget(QWidget* parent)
:QGLWidget(parent)
//: QGLWidget(QGLFormat(QGL::SampleBuffers),parent)
, m_vbo(QOpenGLBuffer::VertexBuffer)
, m_ebo(QOpenGLBuffer::IndexBuffer) { int a = ;
//timer.start();
} DisplayGLWidget::~DisplayGLWidget()
{
makeCurrent();
teardownGL();
} void DisplayGLWidget::teardownGL()
{
// Actually destroy our OpenGL information
m_vbo.destroy();
m_ebo.destroy();
m_vao.destroy();
delete m_program;
} void DisplayGLWidget::initializeGL()
{
//glShadeModel(GL_SMOOTH); // 启用阴影光滑
//glClearColor(0.2,0.2,0.2,0); // 设置清除屏幕的颜色
//glClearDepth(1.0); // 设置深度缓存
//glEnable(GL_DEPTH_TEST); // 深度测试
//glDepthFunc(GL_LEQUAL); // 启用深度测试
//glHint(GL_PERSPECTIVE_CORRECTION_HINT,GL_NICEST); // 进行最好的透视修正,可能会影响性能
initializeOpenGLFunctions();
printVersionInformation();
glClearColor(0.3,0.3,0.3,); // Application-specific initialization {
// Create Shader (Do not release until VAO is created)
m_program = new QOpenGLShaderProgram();
m_program->addShaderFromSourceFile(QOpenGLShader::Vertex, "./shaders/simple.vert");
m_program->addShaderFromSourceFile(QOpenGLShader::Fragment, "./shaders/simple.frag");
m_program->link();
m_program->bind(); // Create Vertex Array Object
m_vao.create();
m_vao.bind(); // Create Buffer (Do not release until VAO is created)
m_vbo.create();
m_vbo.bind();
m_vbo.setUsagePattern(QOpenGLBuffer::StaticDraw);
m_vbo.allocate(vertices, sizeof(vertices)); m_ebo.create();
m_ebo.bind();
m_ebo.setUsagePattern(QOpenGLBuffer::StaticDraw);
m_ebo.allocate(indices,sizeof(indices)); m_program->enableAttributeArray();
m_program->enableAttributeArray();
m_program->enableAttributeArray();
m_program->setAttributeBuffer(, GL_FLOAT, , , *sizeof(GLfloat)); // 3表示的是这一个属性里面有几个分量
m_program->setAttributeBuffer(, GL_FLOAT, *sizeof(GLfloat), , *sizeof(GLfloat));
m_program->setAttributeBuffer(, GL_FLOAT, * sizeof(GLfloat), , * sizeof(GLfloat)); initTextures(); // Release (unbind) all m_vbo.release();
m_vao.release();
//m_ebo.release();
m_program->release();
} } void DisplayGLWidget::paintGL()
{
//makeCurrent(); glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); // 清除屏幕和深度缓存
//glLoadIdentity(); // 重置当前模型的观察矩阵
// Render using our shader m_program->bind();
{ m_program->setUniformValue("ourTexture", );
texture->bind();
m_vao.bind();
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
glDrawElements(GL_TRIANGLES,,GL_UNSIGNED_INT,);
//glDrawArrays(GL_TRIANGLES, 0, sizeof(sg_vertexes) / sizeof(sg_vertexes[0]));
//glDrawArrays(GL_TRIANGLES, 0, 3);
m_vao.release();
}
m_program->release(); /*m_program1->bind();
{
m_vao1.bind();
glDrawArrays(GL_TRIANGLES,0,3);
m_vao1.release();
}
m_program1->release();*/
} void DisplayGLWidget::resizeGL(int width, int height)
{
if (height == ) // 规定屏幕高度不得低于20
{
height = ;
}
glViewport(,,(GLint)width,(GLint)height); // 重置当前的视口
glMatrixMode(GL_PROJECTION); // 选择投影矩阵
glLoadIdentity(); // 重置投影矩阵
//gluPerspective(45.0,(GLfloat)width/(GLfloat)height,0.1,100.0); // 建立透视投影矩阵
glMatrixMode(GL_MODELVIEW); // 选择模型观察矩阵
glLoadIdentity(); // 重置模型观察矩阵
} //void DisplayGLWidget::keyPressEvent(QKeyEvent* e)
//{
// switch (e->key())
// {
// default:
// break;
// }
//} void DisplayGLWidget::mouseMoveEvent(QMouseEvent* event)
{ } void DisplayGLWidget::printVersionInformation()
{
QString glType;
QString glVersion;
QString glProfile; // Get Version Information
//glType = (context()->isOpenGLES()) ? "OpenGL ES" : "OpenGL";
glVersion = reinterpret_cast<const char*>(glGetString(GL_VERSION)); // Get Profile Information
#define CASE(c) case QSurfaceFormat::c: glProfile = #c; break
switch (format().profile())
{
CASE(NoProfile);
CASE(CoreProfile);
CASE(CompatibilityProfile);
}
#undef CASE // qPrintable() will print our QString w/o quotes around it.
//qDebug() << qPrintable(glType) << qPrintable(glVersion) << "(" << qPrintable(glProfile) << ")";
qDebug() << qPrintable(glVersion) << "(" << qPrintable(glProfile) << ")";
} void DisplayGLWidget::initTextures()
{
texture = new QOpenGLTexture(QImage("./resources/texture/flower.jpg").mirrored());
texture->setMinificationFilter(QOpenGLTexture::Nearest);
texture->setMagnificationFilter(QOpenGLTexture::Linear);
texture->setWrapMode(QOpenGLTexture::Repeat); } void DisplayGLWidget::mousePressEvent(QMouseEvent* event)
{ }

结果:

Qt5.6.0+OpenGL 纹理贴图首战告捷的更多相关文章

  1. 基于Cocos2d-x学习OpenGL ES 2.0系列——纹理贴图(6)

    在上一篇文章中,我们介绍了如何绘制一个立方体,里面涉及的知识点有VBO(Vertex Buffer Object).IBO(Index Buffer Object)和MVP(Modile-View-P ...

  2. OpenGL 纹理贴图

    前一节实例代码中有个贴图操作. 今天就简单说明一下纹理贴图... 为了使用纹理贴图.我们首先需要启用纹理贴图功能. 我们可以在Renderer实现的onSurfaceCreated中定义启用: // ...

  3. (转载)Cocos2dx-OpenGL ES2.0教程:纹理贴图(6)

    在上一篇文章中,我们介绍了如何绘制一个立方体,里面涉及的知识点有VBO(Vertex Buffer Object).IBO(Index Buffer Object)和MVP(Modile-View-P ...

  4. [OpenGL]纹理贴图实现 总结

    实现步骤 第一步:设置所需要的OpenGL环境 设置上下文环境 删除已经存在的渲染的缓存 设置颜色缓存 设置帧缓存 清除缓存 设置窗口大小 开启功能 编译shander 使用program 获取sha ...

  5. 用OpenGL进行立方体表面纹理贴图

    一.目的 掌握OpenGL中纹理对象的创建.绑定与使用方法. 二.简单介绍 1,连接静态库 #pragma comment(lib, "glut32.lib") #pragma c ...

  6. opengl学习笔记(三):经过纹理贴图的棋盘

    opengl纹理贴图的步骤: 1:创建纹理对象,并为它指定一个纹理 2:确定纹理如何应用到每个像素上 3:启用纹理贴图功能 4:绘制场景,提供纹理坐标和几何图形坐标 注意:纹理坐标必须在RGBA模式下 ...

  7. (转)使用OpenGL显示图像(七)Android OpenGLES2.0——纹理贴图之显示图片

    转:http://blog.csdn.net/junzia/article/details/52842816 前面几篇博客,我们将了Android中利用OpenGL ES 2.0绘制各种形体,并在上一 ...

  8. IOS 中openGL使用教程3(openGL ES 入门篇 | 纹理贴图(texture)使用)

    在这篇文章中,我们将学习如何在openGL中使用纹理贴图. penGL中纹理可以分为1D,2D和3D纹理,我们在绑定纹理对象的时候需要指定纹理的种类.由于本文将以一张图片为例,因此我们为我们的纹理对象 ...

  9. android ndk调用OpenGL 实现纹理贴图Texture

    android ndk调用OpenGL 实现纹理贴图Texture 时间 2014-06-25 05:24:39  CSDN博客 原文  http://blog.csdn.net/chrisfxs/a ...

随机推荐

  1. BZOJ 4318: OSU! [DP 概率]

    传送门 题意:变成了告诉每个操作的成功概率,并且得分是三次方 一样....分别维护$x,\ x^2,\ x^3$的期望就行了 注意$x^3$是我们最终求的得分,即使失败得分也要累加上之前的 #incl ...

  2. sql server两个时间段内,求出周末的量

    公司有个表记录了出差(加班)的初始时间和截止时间,现在要计算出加班时间,之前的设计并没有考虑到这部分,因此本人通过sql重新计算周末数 表formmain starttime endtime 使用游标 ...

  3. 用Eclipse Maven 创建 Web 3.0 项目问题 正确的处理步骤

    在Eclipse 安装好Maven插件后,创建Maven webapp项目,在工程 properties -> project facets 界面中将 Dynamic Web Module 修改 ...

  4. Django 学习笔记

    day 1 : 一.web 框架本质: 1.http 建立在tcp 之上:一次互通后断开,无状态,短链接 请求头: b'GET / HTTP/1.1 Host: 127.0.0.1:8080 Conn ...

  5. PAT1116. Come on! Let's C (map)

    思路:模拟一下就好了,map用来记录每个人的排名. AC代码 #include <stdio.h> #include <map> #include <math.h> ...

  6. SIFT解析(三)生成特征描述子

    以上两篇文章中检测在DOG空间中稳定的特征点,lowe已经提到这些特征点是比Harris角点等特征还要稳定的特征.下一步骤我们要考虑的就是如何去很好地描述这些DOG特征点. 下面好好说说如何来描述这些 ...

  7. PV和UV的简单记录

    1.什么是PV值 PV(page view)即页面浏览量或点击量,是衡量一个网站或网页用户访问量.具体的说,PV值就是所有访问者在24小时(0点到24点)内看了某个网站多少个页面或某个网页多少次.PV ...

  8. 实战小项目BUG纪录

    果然,作为程序员最可爱的女朋友就是各种BUG,解决了你的开发能力和开发效率就会上升到一个新的层次.反之,在你面对BUG的时候,如果轻易的就放弃了,你也就失去了一次自我成长的机会.学习就是这样的,我们有 ...

  9. openssl 生成证书基本原理

    摘自:http://blog.csdn.net/oldmtn/article/details/52208747 1. 基本原理 公司一个项目要进行交易数据传输,因为这个项目银行那边也是刚刚开始启动,所 ...

  10. java碎笔

    选择表达式 overviewPart1.setMonth_incom(rs.getString("month_incom").equals("")?" ...